forked from cantonjs/create-wxapp-page
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.86 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
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@4ndh4k/create-wxapp-page",
"description": "快速创建微信小程序页面",
"version": "2.1.0",
"main": "lib/index",
"bin": {
"create-wxapp-page": "bin/create-wxapp-page"
},
"files": [
"*.md",
"bin",
"lib"
],
"scripts": {
"start": "yarn test -- --watchAll",
"test": "CWP_ENV=development jest --runInBand",
"cli": "CWP_ENV=development ./bin/create-wxapp-page",
"prebuild": "rimraf lib",
"build:babel": "babel src -d lib",
"build:cpy": "cpy '**/template.*' '../lib/' --cwd=src --parents",
"build": "run-s build:*",
"preversion": "run-s test build"
},
"author": "JC",
"repository": "4ndh4k/create-wxapp-page",
"engines": {
"node": ">=4.2"
},
"keywords": [
"cli",
"wxapp",
"weapp",
"wechat"
],
"license": "MIT",
"dependencies": {
"fs-extra": "^4.0.3",
"inquirer": "^3.0.6",
"lodash": "^4.17.4",
"mkdirp": "^0.5.1",
"opn": "^5.1.0",
"update-notifier": "^2.2.0",
"xdg-basedir": "^3.0.0",
"yargs": "^7.0.2"
},
"jest": {
"modulePathIgnorePatterns": [
"node_modules",
"lib",
"test/src"
]
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-core": "^6.13.2",
"babel-eslint": "^6.1.2",
"babel-jest": "^19.0.0",
"babel-plugin-transform-es2015-destructuring": "^6.19.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.18.0",
"babel-plugin-transform-es2015-parameters": "^6.18.0",
"babel-plugin-transform-es2015-spread": "^6.22.0",
"babel-polyfill": "^6.13.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.11.6",
"cpy-cli": "^1.0.1",
"cross-env": "^4.0.0",
"eslint": "^2.4.0",
"eslint-plugin-babel": "^3.2.0",
"eslint-plugin-import": "^2.2.0",
"jest": "^19.0.2",
"kapok-js": "^0.7.2",
"npm-run-all": "^4.1.2",
"rimraf": "^2.5.4"
}
}