-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 954 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
{
"name": "scaffold-node-module",
"version": "0.0.0-semantically-released",
"description": "Node module for scaffolding",
"main": "index.js",
"scripts": {
"start": "node index",
"test": "lab",
"debug": "node --debug index",
"lint": "eslint *.js ./src/*.js ./src/**/*.js ./test/*.js ./test/**/*.js",
"commit": "git-cz",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"author": "Jay Baker",
"license": "ISC",
"devDependencies": {
"code": "^2.0.1",
"commitizen": "^2.4.6",
"cz-conventional-changelog": "^1.1.5",
"eslint-config-chasevida": "^0.1.1",
"eslint-plugin-chasevida": "^0.1.2",
"lab": "^7.3.0",
"semantic-release": "^4.3.5"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "https://github.com/logikaljay/scaffold-node-module.git"
}
}