-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.21 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
{
"name": "todolists",
"version": "1.0.0",
"description": "Todolist in NodeJs CLI",
"main": "main.js",
"bin": {
"todo": "main.js"
},
"scripts": {
"prebuild": "tsc -p . --sourcemap",
"test": "tnpm run prebuild && nyc mocha",
"dev": "tsc -p . --watch",
"ci": "npm run prebuild && npm run cov",
"cov": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec",
"posttest": "nyc report --reporter=json && codecov -t -f coverage/*.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/forthedamn/todolists.git"
},
"keywords": [
"todolist",
"todo"
],
"author": "forthedamn <simonzhong0924@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/forthedamn/todolists/issues"
},
"homepage": "https://github.com/forthedamn/todolists#readme",
"dependencies": {
"colors": "^1.1.2",
"commander": "^2.9.0",
"js-enums": "^1.0.1"
},
"devDependencies": {
"@types/mocha": "^2.2.41",
"@types/node": "^7.0.12",
"@types/should": "^8.3.0",
"codecov": "^1.0.1",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"nyc": "^11.0.3",
"should": "^11.2.1",
"typescript": "^2.0.0"
}
}