-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.38 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
{
"name": "isomorphic-library",
"description": "isomorphic library with WebPack",
"main": "lib/main.js",
"scripts": {
"build": "webpack --env production --config webpack.prod.js",
"commit": "npx git-cz",
"commitmsg": "npx validate-commit-msg",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"files": [
"lib/"
],
"author": "ridermansb <[email protected]>",
"repository": "[email protected]:Ridermansb/isomorphic-library.git",
"license": "ISC",
"devDependencies": {
"babel-core": "6.26.0",
"babel-loader": "7.1.2",
"babel-plugin-add-module-exports": "0.2.1",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-polyfill": "6.26.0",
"babel-preset-env": "1.6.0",
"clean-webpack-plugin": "0.1.16",
"compression-webpack-plugin": "1.0.0",
"cz-conventional-changelog": "2.0.0",
"semantic-release": "^8.0.3",
"validate-commit-msg": "2.14.0",
"webpack": "3.6.0",
"webpack-merge": "4.1.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
},
"validate-commit-msg": {
"helpMessage": "\nPlease fix your commit message (and consider using http://npm.im/commitizen)\n",
"warnOnFail": false,
"autoFix": true
}
},
"engines": {
"node": ">=8.2.0",
"npm": ">=5.2.0"
},
"version": "0.0.0-development"
}