-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.45 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
{
"name": "es6-npm-package-scaffold",
"main": "./lib",
"scripts": {
"lint": "eslint ./src ./test",
"build": "babel ./src --out-dir ./lib --copy-files",
"clean": "rimraf ./lib",
"pretest": "npm run lint",
"test": "babel-node test/*.js",
"test:watch": "nodemon --exec npm test",
"preversion": "npm test && npm run changelog",
"version:auto": "npm version $(conventional-recommended-bump --preset=angular)",
"postversion": "git push && git push --tags",
"release": "npm run version:auto && npm publish",
"prepublish": "npm run build",
"changelog:generate": "conventional-changelog -p angular -i CHANGELOG.md -w",
"changelog:commit": "git add CHANGELOG.md && git commit -m \"chore(changelog): auto generate changelog\"",
"changelog": "npm run changelog:generate && npm run changelog:commit"
},
"keywords": [],
"author": "Olivier Lalonde <olalonde@gmail.com>",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.4.0",
"babel-eslint": "^5.0.0-beta6",
"babel-preset-es2015": "^6.3.13",
"blue-tape": "^0.1.11",
"conventional-changelog": "^0.5.3",
"conventional-recommended-bump": "0.0.3",
"cz-conventional-changelog": "^1.1.5",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^4.0.0",
"nodemon": "^1.8.1",
"rimraf": "^2.5.0"
},
"version": "0.3.1",
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog/"
}
}
}