-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
39 lines (39 loc) · 953 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "leetcode",
"version": "1.30.0",
"description": "My solutions for LeetCode problems.",
"main": "index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watchAll",
"test:coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ecgan/leetcode.git"
},
"keywords": [
"leetcode"
],
"author": "Gan Eng Chin",
"license": "MIT",
"bugs": {
"url": "https://github.com/ecgan/leetcode/issues"
},
"homepage": "https://github.com/ecgan/leetcode",
"devDependencies": {
"codecov": "^3.7.2",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^23.8.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^25.1.0",
"leettree": "^0.3.0"
},
"dependencies": {
"lodash": "^4.17.19"
}
}