-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 664 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 664 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
{
"name": "my-cli-app",
"version": "1.0.0",
"description": "A fancy CLI app",
"homepage": "http://eridem.net",
"main": "index.js",
"scripts": {
"standard": "standard",
"pretest": "standard --fix",
"test": "nyc --cache mocha --timeout=8000 --check-leaks test/**/*.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"bin": {
"mycli": "bin/cmd.js"
},
"dependencies": {
"camelcase": "^4.0.0",
"chalk": "^1.1.3",
"require-dir": "^0.3.1",
"shelljs": "^0.7.6",
"yargs": "^6.6.0"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^3.2.0",
"nyc": "^10.0.0",
"standard": "^8.6.0"
}
}