-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "streakingman-cli",
"version": "1.13.0",
"description": "封装了一些常用操作的命令行工具",
"keywords": [
"commander",
"inquirer",
"lint",
"命令行",
"工程化"
],
"main": "index.js",
"bin": {
"skm": "index.js"
},
"scripts": {
"test": "jest",
"release": "standard-version --commit-all",
"dev": "cross-env NODE_ENV=development rollup -c --watch",
"build": "cross-env NODE_ENV=production rollup -c",
"release:alpha": "standard-version -- --prerelease alpha",
"release&publish": "yarn release && yarn publish",
"release:alpah&publish": "yarn release:alpha && yarn publish",
"prepare": "husky install"
},
"author": {
"name": "streakingman",
"email": "z_max_y@163.com"
},
"license": "ISC",
"dependencies": {
"commander": "^9.0.0",
"ejs": "^3.1.6",
"fs-extra": "^10.0.1",
"inquirer": "^8.2.0"
},
"devDependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.4",
"@types/ejs": "^3.1.1",
"@types/fs-extra": "^9.0.13",
"@types/inquirer": "^9.0.0",
"@types/jest": "^28.1.6",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"cross-env": "^7.0.3",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"jest": "^28.1.3",
"lint-staged": "^12.3.4",
"prettier": "^2.5.1",
"rollup": "^2.78.0",
"standard-version": "^9.3.2",
"ts-jest": "^28.0.8",
"typescript": "^4.7.4"
}
}