-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.17 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
{
"name": "acho-skin-cli",
"description": "A correct levels of logs for create CLI commands",
"homepage": "https://github.com/achohq/acho-skin-cli",
"version": "2.0.1",
"main": "./index.js",
"author": {
"email": "[email protected]",
"name": "Kiko Beats",
"url": "https://github.com/Kikobeats"
},
"repository": {
"type": "git",
"url": "git+https://github.com/achohq/acho-skin-cli.git"
},
"bugs": {
"url": "https://github.com/achohq/acho-skin-cli/issues"
},
"keywords": [
"acho",
"cli",
"skin"
],
"devDependencies": {
"acho": "latest",
"mocha": "latest",
"nyc": "latest",
"should": "latest",
"standard": "latest",
"standard-markdown": "latest"
},
"engines": {
"node": ">= 4"
},
"files": [
"index.js"
],
"scripts": {
"clean": "rm -rf node_modules",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"lint": "standard-markdown && standard",
"precommit": "lint-staged",
"pretest": "npm run lint",
"test": "nyc mocha"
},
"license": "MIT",
"peerDependencies": {
"acho": "4.x"
},
"standard": {
"env": [
"mocha"
]
}
}