-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.42 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": "run-example",
"description": "My spectacular module",
"version": "0.0.0",
"author": {
"name": "sanemat",
"email": "[email protected]",
"url": "sane.jp"
},
"bin": "cli.js",
"dependencies": {
"es6-promise": "^2.3.0",
"meow": "^3.3.0",
"pretty-format": "^1.2.0",
"remove-trailing-path-separator": "^1.0.1",
"winston": "^1.0.1"
},
"devDependencies": {
"conventional-changelog": "^0.2.1",
"david": "^6.1.6",
"eclint": "^1.1.1",
"eslint": "^1.0.0-rc",
"espower-loader": "^0.11.0",
"fixpack": "^2.2.0",
"globstar": "^1.0.0",
"mocha": "^2.2.5",
"power-assert": "^0.11.0",
"touch": "^1.0.0"
},
"engines": {
"node": ">=0.10.0"
},
"files": [
"index.js",
"cli.js"
],
"keywords": [
"",
"cli",
"cli-app"
],
"license": "MIT",
"repository": "sanemat/run-example",
"scripts": {
"changelog": "touch changelog.md && conventional-changelog -i changelog.md --overwrite --preset angular",
"david": "david update",
"eclint": "globstar --ignore \"node_modules/**\" -- eclint check \"*.{js,yml,md,json}\"",
"eslint": "eslint example lib test cli.js index.js",
"fixpack": "fixpack",
"git:tag": "git tag v${npm_package_version}",
"lint": "npm run eclint && npm run eslint",
"test": "mocha --require ./enable-power-assert.js -- ./test/*test.js",
"verify": "npm run lint && npm run test"
}
}