-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.94 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": "vue-redux-prepare-props",
"version": "0.0.7",
"description": "Helper for use props of Redux with Vue.js using Vuex and Vuedeux",
"main": "dist/vue-redux-prepare-props.common.js",
"module": "dist/vue-redux-prepare-props.es.js",
"unpkg": "dist/vue-redux-prepare-props.js",
"repository": "https://github.com/kolesoffac/vue-redux-prepare-props.git",
"author": "Anatoly Kolesov <[email protected]>",
"license": "Apache-2.0",
"scripts": {
"newpatch": "npm version patch -m 'chore(build): %s'",
"newminor": "npm version minor -m 'chore(build): %s'",
"newmajor": "npm version major -m 'chore(build): %s'",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && npm run build-all && git add -A dist",
"postversion": "npm run commit-changelog",
"commit-changelog": "git add CHANGELOG.md && git commit -m 'chore(changelog): update CHANGELOG.md' || echo echo",
"build": "echo \"Run build...\" && rollup -c && echo \"Finish build...\"",
"build-prod": "echo \"Run build prod...\" && NODE_ENV='production' rollup -c && echo \"Finish build...\"",
"build-all": "npm run build && npm run build-prod",
"commitmsg": "commitlint -e $GIT_PARAMS"
},
"devDependencies": {
"@commitlint/cli": "^6.2.0",
"@commitlint/config-conventional": "^6.1.3",
"babel-core": "^6.26.3",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-transform-es2015-typeof-symbol": "^6.23.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-regenerator": "^6.26.0",
"babel-preset-es2015-rollup": "^3.0.0",
"husky": "^0.14.3",
"rollup": "^0.59.3",
"rollup-plugin-babel": "^3.0.4",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-json": "^3.0.0",
"rollup-plugin-minify": "^1.0.3",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-progress": "^0.4.0",
"rollup-plugin-replace": "^2.0.0",
"standard-version": "^4.4.0"
}
}