forked from skygragon/leetcode-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.59 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "leetcode-cli",
"version": "2.6.2",
"description": "A cli tool to enjoy leetcode!",
"preferGlobal": "true",
"engines": {
"node": ">=4"
},
"bin": {
"leetcode": "./bin/leetcode"
},
"scripts": {
"lint": "eslint lib/ test/",
"test": "npm run lint && nyc mocha test test/plugins && nyc report --reporter=lcov",
"travis": "node bin/pkg",
"pkg": "pkg . --out-path=dist/ --targets"
},
"pkg": {
"scripts": [
"lib"
],
"assets": [
"colors",
"icons",
"templates"
],
"targets": [
"node10-linux-x64",
"node10-macos-x64",
"node10-win-x64"
]
},
"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": {
"ansi-styles": "3.2.1",
"cheerio": "0.20.0",
"he": "1.2.0",
"mkdirp": "0.5.1",
"moment": "^2.20.1",
"nconf": "0.10.0",
"ora": "3.0.0",
"prompt": "1.0.0",
"request": "2.88.0",
"supports-color": "5.5.0",
"underscore": "1.9.1",
"wordwrap": "1.0.0",
"yargs": "12.0.4"
},
"devDependencies": {
"chai": "4.2.0",
"eslint": "5.9.0",
"eslint-config-google": "0.11.0",
"mocha": "5.2.0",
"nock": "10.0.2",
"nyc": "13.1.0",
"pkg": "^4.3.4",
"rewire": "4.0.1"
}
}