-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 966 Bytes
/
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
{
"name": "damon-cli",
"version": "0.0.3",
"description": "A CLI for the damon tool.",
"main": "index.js",
"scripts": {
"postversion": "npm run changelog",
"pretest": "npm run format && npm run lint",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "jscs ./index.js",
"lint": "eslint ./index.js",
"changelog": "node ./bin/changelog.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/damonjs/damon-cli.git"
},
"bin": {
"damon": "index.js"
},
"keywords": [
"cli",
"test",
"damon",
"damonjs"
],
"author": "Yoann Moinet <yo@nnmoi.net>",
"license": "MIT",
"bugs": {
"url": "https://github.com/damonjs/damon-cli/issues"
},
"homepage": "https://github.com/damonjs/damon-cli#readme",
"dependencies": {
"chalk": "^1.1.1",
"commander": "^2.9.0",
"damon": "^0.2.1"
},
"devDependencies": {
"conventional-changelog": "^1.1.0"
}
}