-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
68 lines (68 loc) · 1.78 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
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "nodeplate",
"version": "0.0.1",
"description": "A boilerplate for your rock-solid node.js projects. Includes static code analysis, development and building tools.",
"repository": "https://github.com/g-div/nodeplate",
"main": "index.js",
"archive": {
"dependencies": true,
"devDependencies": false,
"globalDependencies": [
"npm"
]
},
"xo": {
"esnext": true
},
"scripts": {
"readme": "node-readme",
"precommit": "npm test",
"prepush": "npm-run-all lint test test:deps",
"start": "npm run boot",
"boot": "babel-node $npm_package_main",
"dev": "nodemon --exec babel-node -- $npm_package_main",
"debug": "babel-node-debug $npm_package_main",
"lint": "xo",
"format": "xo --fix",
"inspect": "jsinspect",
"test": "lab",
"coverage": "lab -r lcov",
"build": "nar create --executable",
"deps:sec": "nsp audit-package",
"deps:updates": "david",
"test:deps": "npm-run-all deps:sec deps:updates",
"patch": "npm version patch && npm publish",
"minor": "npm version minor && npm publish",
"major": "npm version major && npm publish",
"postpublish": "git push origin master --follow-tags",
"licenses": "license-checker"
},
"keywords": [
"boilerplate",
"starterkit",
"template",
"project"
],
"author": {
"name": "g-div",
"url": "http://github.com/g-div"
},
"license": "ISC",
"devDependencies": {
"babel-node-debug": "^1.3.0",
"david": "^6.4.0",
"husky": "^0.10.1",
"jsinspect": "^0.7.0",
"lab": "^7.0.0",
"license-checker": "^4.2.0",
"nar": "^0.3.20",
"node-readme": "^0.1.9",
"nodemon": "^1.8.0",
"npm-run-all": "^1.2.12",
"nsp": "^1.1.0",
"xo": "^0.10.1"
},
"dependencies": {
"babel": "^5.8.29"
}
}