-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.29 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.29 KB
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
{
"name": "mp-merge-cli",
"version": "1.1.0",
"description": "小程序合包工具",
"main": "dist/index.js",
"bin": {
"mp-merge": "./dist/index.js",
"mm": "./dist/index.js"
},
"scripts": {
"dev": "rm -rf ./dist/src/ && nodemon --exec 'tsc'",
"build": "rm -rf ./dist/src/ && tsc",
"commit": "npx git-cz",
"version": "auto-changelog -p && git add CHANGELOG.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ManfredHu/mp-merge-cli.git"
},
"author": "ManfredHuFe@gmail.com",
"license": "MIT",
"dependencies": {
"@babel/cli": "^7.10.3",
"@babel/core": "^7.10.3",
"@babel/preset-env": "^7.10.3",
"commander": "^4.1.1",
"dayjs": "^1.8.23",
"debug": "^4.1.1",
"glob": "^7.1.6",
"ora": "^4.0.3",
"shelljs": "^0.8.4",
"tslib": "^1.11.1",
"uglify-js": "^3.10.0"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/debug": "^4.1.5",
"@types/node": "^13.11.0",
"@types/shelljs": "^0.8.8",
"commitizen": "^4.1.2",
"cz-conventional-changelog": "^3.2.0",
"nodemon": "^2.0.2",
"tslint": "^6.1.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.8.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}