-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 1.57 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
{
"name": "nodeforces",
"version": "0.1.0",
"description": "The only codeforces helper you'll ever need",
"homepage": "https://github.com/kp96/nodeforces",
"bugs": "https://github.com/kp96/nodeforces/issues",
"repository": {
"type": "git",
"url": "git://github.com/kp96/nodeforces.git"
},
"keywords": [
"codeforces",
"api",
"helper",
"testing"
],
"main": "index.js",
"bin": {
"nodeforces": "./bin/nodeforces"
},
"scripts": {
"test": "node npm/test.js",
"test-system": "node npm/test-system.js",
"test-lint": "node npm/test-lint.js",
"test-unit": "node npm/test-unit.js",
"test-integration": "node npm/test-integration.js"
},
"author": "Krishna Kalubandi <[email protected]>",
"license": "MIT",
"dependencies": {
"async": "2.6.1",
"chai": "4.1.2",
"cheerio": "0.22.0",
"colors": "1.3.0",
"commander": "2.17.0",
"lodash": "4.17.10",
"mkdirp": "0.5.1",
"mocha": "5.2.0",
"ora": "2.1.0",
"request": "2.87.0"
},
"devDependencies": {
"editorconfig": "0.15.0",
"eslint": "4.19.1",
"eslint-plugin-lodash": "2.7.0",
"eslint-plugin-mocha": "5.1.0",
"eslint-plugin-security": "1.4.0",
"expect.js": "0.3.1",
"istanbul": "0.4.5",
"nock": "9.3.1",
"nsp": "2.6.3",
"packity": "0.3.2",
"parse-gitignore": "0.4.0",
"pretty-ms": "3.2.0",
"recursive-readdir": "2.2.2",
"shelljs": "0.8.2",
"sinon": "5.0.10",
"rewire": "4.0.1"
},
"engines": {
"node": ">=6"
},
"greenkeeper": {
"ignore": [
"nsp"
]
}
}