-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.09 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.09 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
{
"name": "mini-program-cli",
"version": "0.3.0",
"description": "A CLI for scaffolding mini-program projects",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"mini": "bin/mini",
"mini-init": "bin/init",
"mini-start": "bin/start"
},
"keywords": [
"mini-program",
"cli"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Phieo/mini-program-cli.git"
},
"author": "Phieo",
"homepage": "https://github.com/Phieo/mini-program-cli#readme",
"license": "ISC",
"dependencies": {
"clui": "^0.3.6",
"commander": "^2.15.1",
"fs-extra": "^6.0.1",
"gulp": "^3.9.1",
"gulp-postcss": "^7.0.1",
"gulp-rename": "^1.2.3",
"inquirer": "^5.2.0",
"postcss-import": "^11.1.0",
"postcss-mixins": "^6.2.0",
"postcss-nested": "^3.0.0",
"postcss-scss": "^1.0.5",
"postcss-simple-vars": "^4.1.0"
},
"devDependencies": {
"eslint": "^5.0.1",
"eslint-config-ali": "^3.1.0",
"eslint-plugin-import": "^2.13.0",
"pre-commit-eslint": "^0.0.6"
}
}