-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.47 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "task-workflow",
"version": "1.2.3",
"description": "a task workflow tools",
"author": "Ben Lau<[email protected]>",
"license": "MIT",
"bin": {
"work-start": "bin/work-start"
},
"files": [
"bin/",
"lib/"
],
"homepage": "https://github.com/ben-lau/task-workflow",
"bugs": {
"url": "https://github.com/ben-lau/task-workflow/issues"
},
"keywords": [
"task",
"process",
"workflow",
"nodejs",
"compose",
"task-process",
"task workflow",
"task-workflow",
"任务流程",
"流程化任务"
],
"scripts": {
"build": "rimraf lib/ && rollup -c rollup.config.js",
"lint": "eslint src --fix --ext .ts,.tsx",
"to-self": "work-start --from workflow.config.js to-self",
"release:patch": "work-start --from workflow.config.js release:patch",
"release:minor": "work-start --from workflow.config.js release:minor",
"release:major": "work-start --from workflow.config.js release:major",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"version:major": "standard-version --skip.commit --skip.changelog --release-as major",
"version:minor": "standard-version --skip.commit --skip.changelog --release-as minor",
"version:patch": "standard-version --skip.commit --skip.changelog --release-as patch",
"postinstall": "echo \"\u001b[36m\u001b[1m\nThanks for using task-workflow! \nIf you have any good suggestions or any questions, please let me know\u001b[0m\n\""
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"engines": {
"node": ">=10.12.0"
},
"dependencies": {
"chalk": "^4.1.0",
"commander": "^6.2.1",
"cross-spawn": "^7.0.3",
"fs-extra": "^9.1.0",
"inquirer": "^7.3.3",
"log4js": "6.3.0",
"minimist": "^1.2.5",
"open": "^7.3.0",
"ora": "^5.1.0"
},
"devDependencies": {
"@types/cross-spawn": "^6.0.2",
"@types/fs-extra": "^9.0.13",
"@types/inquirer": "^7.3.1",
"@types/node": "^14.14.13",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"conventional-changelog-cli": "^2.2.2",
"eslint": "^7.15.0",
"husky": "^4.3.0",
"rimraf": "^3.0.2",
"rollup": "^2.34.2",
"rollup-plugin-typescript2": "^0.30.0",
"rollup-plugin-uglify": "^6.0.4",
"serialize-javascript": ">=3.1.0",
"standard-version": "^9.3.2",
"tslib": "^2.3.0",
"typescript": "^4.1.3"
}
}