-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 801 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 801 Bytes
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
{
"name": "cf",
"version": "0.6.0",
"description": "codeforces test runner",
"bin": "./src/index.js",
"scripts": {
"i": "node ./scripts/installGlobalFromPack",
"test": "npm run test:functional",
"test:functional": "mocha --file test/functional/setup.js test/functional/**/*.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Alexsey/cf.git"
},
"keywords": [
"codeforces"
],
"author": "Alexsey",
"license": "ISC",
"bugs": {
"url": "https://github.com/Alexsey/cf/issues"
},
"homepage": "https://github.com/Alexsey/cf#readme",
"dependencies": {
"colors": "^1.3.0",
"lodash": "^4.17.10"
},
"preferGlobal": true,
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^5.2.0",
"shelljs": "^0.8.2"
}
}