This repository has been archived by the owner on Jan 12, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
59 lines (59 loc) · 1.7 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
{
"private": true,
"author": "bzone <yarnbCoder@gmail.com>",
"license": "MIT",
"scripts": {
"build": "node ./scripts/build.js",
"build:watch": "node ./scripts/build.js -w",
"publish": "./scripts/publish.js",
"bootstrap": "lerna bootstrap",
"rg": "node scripts/replace.js",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"test": "jest --coverage ",
"precommit": "npm run format && npm run lint",
"format": "prettier --write '{{packages,__test__}/**/*.{js,less},*.js}'",
"lint": "eslint --ext .js --ext .less src __test__"
},
"jest": {
"testURL": "http://localhost/",
"testPathIgnorePatterns": [
"/node_modules/",
"/examples/",
"/weappx-weapp/",
"/weappx-wepy/",
"/weappx-plugin-loading/"
]
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"chalk": "^2.3.2",
"coveralls": "^3.0.0",
"cross-env": "^5.1.3",
"eslint": "^3.18.0",
"eslint-config-prettier": "^2.9.0",
"eslint-config-standard": "^7.1.0",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^2.0.1",
"husky": "^0.14.3",
"inquirer": "^6.0.0",
"jest": "^22.4.3",
"lerna": "^2.11.0",
"prettier": "^1.11.1",
"rimraf": "^2.6.2",
"shelljs": "^0.8.1",
"through2": "^2.0.3",
"uglify-js": "^3.3.18",
"umi-test": "^0.5.3",
"vinyl-fs": "^3.0.2",
"webpack": "^3.9.1",
"webpack-merge": "^4.1.2"
},
"dependencies": {}
}