forked from fczbkk/workshop-js-tools-2019-03-20
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.36 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
{
"name": "@fczbkk/calculator",
"version": "1.2.0",
"description": "Yet another calculator for workshop",
"repository": {
"type": "git",
"url": "git+https://github.com/fczbkk/workshop-js-tools-2019-03-20.git"
},
"author": "Riki Fridrich <[email protected]> (https://github.com/fczbkk)",
"license": "MIT",
"bugs": {
"url": "https://github.com/fczbkk/workshop-js-tools-2019-03-20/issues"
},
"homepage": "https://github.com/fczbkk/workshop-js-tools-2019-03-20#readme",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.4.0",
"@babel/preset-env": "^7.4.1",
"babel-loader": "^8.0.5",
"conventional-changelog-angular": "^5.0.3",
"conventional-changelog-cli": "^2.0.12",
"documentation": "^9.3.1",
"jsdoc": "^3.5.5",
"mkdirp": "^0.5.1",
"rimraf": "^2.6.3",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0"
},
"scripts": {
"cleanup": "rimraf ./build && mkdirp ./build",
"prebuild": "npm run cleanup",
"build": "webpack --config ./configs/webpack.config.js",
"doc:readme": "documentation readme ./src/index.js -s 'Documentation'",
"doc": "jsdoc -c ./configs/jsdoc.config.json",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"version": "npm run build && npm run changelog && npm run doc && git add -A",
"postversion": "git push && git push --tags"
}
}