-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
48 lines (48 loc) · 1.3 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
{
"name": "miniprogram-deploy",
"version": "0.1.2",
"description": "miniprogram deploy cli based on miniprogram-ci",
"main": "bin/index.js",
"bin": {
"miniprogram-deploy": "bin/index.js"
},
"scripts": {
"start": "tsc --watch",
"build": "rm -rf dist && npm run update-json-schema && tsc",
"prepublishOnly": "npm run build",
"update-json-schema": "typescript-json-schema 'src/types/config-json.ts' '*' --out=src/schemas/config-json-schema.json --id=configdata --required --strictNullChecks"
},
"repository": {
"type": "git",
"url": "https://github.com/sunxiuguo/miniprogram-deploy"
},
"author": "[email protected]",
"license": "ISC",
"bugs": {
"url": "https://github.com/sunxiuguo/miniprogram-deploy/issues"
},
"keywords": [
"npm",
"miniprogram",
"cli",
"miniprogram-cli",
"miniprogram-deploy",
"nodejs"
],
"homepage": "https://github.com/sunxiuguo/miniprogram-deploy#README",
"dependencies": {
"chalk": "^4.1.2",
"cli-table3": "^0.6.0",
"commander": "^8.2.0",
"inquirer": "^8.1.2",
"jsonschema": "^1.4.0",
"miniprogram-ci": "^1.6.1",
"ora": "^4.0.0",
"simple-git": "^2.45.1"
},
"devDependencies": {
"typescript": "^4.4.3",
"typescript-json-schema": "^0.50.1"
},
"files": ["bin", "dist"]
}