-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.23 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
{
"name": "js-workflow-promise",
"version": "0.0.5",
"description": "用类似promise链式调用的方式来做js工作流管理,有利于梳理和简化复杂的业务流程",
"main": "./dist/index.js",
"repository": "https://github.com/Lighting-Jack/js-workflow-promise.git",
"author": "Lighting-Jack",
"license": "MIT",
"scripts": {
"init": "commitizen init cz-conventional-changelog --save --save-exact",
"build": "tsc --outDir dist/ -p tsconfig.json",
"tsn": "ts-node --no-cache",
"release": "standard-version",
"pub": "git push --follow-tags origin master && npm publish",
"test": "jest"
},
"engines": {
"node": ">= 7.6.0"
},
"devDependencies": {
"@babel/core": "^7.2.0",
"@types/es6-promise": "^3.3.0",
"@types/node": "^10.12.14",
"babel-core": "^6.26.3",
"babel-loader": "^8.0.4",
"commitizen": "^3.0.5",
"cross-env": "^5.2.0",
"cz-conventional-changelog": "^2.1.0",
"jest": "^23.6.0",
"standard-version": "^4.4.0",
"ts-loader": "^5.3.1",
"ts-node": "^7.0.1",
"typescript": "^3.2.2"
},
"keywords": [
"workflow",
"promise"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}