forked from wechat-miniprogram/miniprogram-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.53 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.53 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "create-miniprogram",
"version": "1.2.3",
"description": "create miniprogram cli",
"keywords": [
"create",
"miniprogram",
"cli",
"template"
],
"bin": "dist/cli.js",
"main": "dist/cli.js",
"files": [
"dist"
],
"engines": {
"npm": ">= 6.0.0",
"node": ">= 4.0.0",
"yarn": ">= 0.27.5"
},
"scripts": {
"build": "babel src -d dist",
"lint": "eslint src/*",
"prepack": "npm run build",
"test:template": "node dist/cli.js NewFuture/miniprogram-template temp",
"pretest": "npm run build",
"test": "npm run test:template"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "4"
}
}
]
],
"plugins": [
"@babel/transform-runtime"
]
},
"repository": {
"type": "git",
"url": "https://github.com/NewFuture/create-miniprogram.git"
},
"author": "New Future",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "14.0.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1"
},
"dependencies": {
"@babel/runtime": "^7.4.4",
"commander": "^4.0.0",
"download": "^7.1.0",
"filenamify": "^4.0.0",
"glob": "^7.1.4",
"inquirer": "^7.0.0",
"progress": "^2.0.0",
"rimraf": "^3.0.0"
}
}