-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.03 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
{
"name": "UVa-cli",
"version": "0.0.0",
"description": "CLI for UVa online judge",
"homepage": "https://github.com/Judge-Team/UVa-cli",
"bugs": {
"url": "https://github.com/Judge-Team/UVa-cli/issues"
},
"licenses": {
"license": "MIT"
},
"contributors": [
{
"name": "ChangZhuo Chen (陳昌倬)",
"email": "[email protected]",
"url": "http://czchen.info"
}
],
"bin": {
"uva": "./bin/uva",
"uva-add": "./bin/uva-add"
},
"repository": {
"type": "git",
"url": "https://github.com/Judge-Team/UVa-cli"
},
"dependencies": {
"commander": "~2.3.0",
"mkdirp": "~0.5.0",
"js-yaml": "~3.1.0",
"pkginfo": "~0.3.0",
"tmp": "~0.0.24",
"winston": "~0.7.3"
},
"devDependencies": {
"chai": "~1.9.1",
"fs-extra": "~0.11.0",
"growl": "~1.8.1",
"LiveScript": "~1.2.0",
"mocha": "~1.21.4"
},
"scripts": {
"prepublish": "node_modules/.bin/lsc -c *.ls src",
"test": "node_modules/.bin/mocha"
},
"engines": {
"node": "~0.10.30"
}
}