forked from skygragon/leetcode-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.14 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "leetcode-cli",
"version": "0.7.0",
"description": "A cli tool to enjoy leetcode!",
"preferGlobal": "true",
"bin": {
"leetcode": "./bin/leetcode"
},
"scripts": {
"lint": "eslint lib/ test/",
"test": "npm run lint && nyc mocha test/"
},
"repository": {
"type": "git",
"url": "http://github.com/skygragon/leetcode-cli.git"
},
"keywords": [
"leetcode",
"cli",
"command",
"tool"
],
"author": {
"name": "Eric Wang",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/skygragon/leetcode-cli/issues"
},
"homepage": "https://github.com/skygragon/leetcode-cli#readme",
"dependencies": {
"chalk": "^1.1.3",
"cheerio": "^0.20.0",
"he": "^1.1.1",
"loglevel": "^1.4.1",
"prompt": "^1.0.0",
"request": "^2.74.0",
"sprintf-js": "^1.0.3",
"underscore": "^1.8.3",
"wordwrap": "^1.0.0",
"yargs": "^5.0.0"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.3.1",
"eslint-config-google": "^0.6.0",
"mocha": "^3.0.2",
"nock": "^8.0.0",
"nyc": "^8.1.0",
"rewire": "^2.5.2"
}
}