forked from zhengguorong/xbosstrack-wechat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.79 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
{
"name": "weapp-tracker",
"version": "1.0.1",
"description": "",
"main": "dist/weapptracker.min.js",
"scripts": {
"lint": "./node_modules/.bin/eslint src",
"test": "BABEL_ENV=test jest",
"codecov": "node_modules/codecov/bin/codecov",
"dev": "BABEL_ENV=build node_modules/rollup/bin/rollup --config rollup.config.js --environment entry:src/index.js,dest:dist/weapptracker.js",
"build": " BABEL_ENV=build node_modules/rollup/bin/rollup --config rollup.config.js --environment entry:src/index.js,dest:dist/weapptracker.min.js,uglify",
"watch": "BABEL_ENV=build node_modules/rollup/bin/rollup --config rollup.config.js --environment entry:src/index.js,dest:dist/weapptracker.js -w"
},
"jest": {
"verbose": true,
"testEnvironment": "node",
"automock": false,
"collectCoverage": true,
"coverageDirectory": "./coverage/",
"testPathIgnorePatterns": [
"./__tests__/wx.js"
],
"setupFiles": [
"./__tests__/wx.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/skytt/weapp-tracker.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/skytt/weapp-tracker/issues"
},
"homepage": "https://github.com/skytt/weapp-tracker#readme",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-jest": "^23.4.2",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015-rollup": "^3.0.0",
"babel-preset-latest": "^6.24.1",
"codecov": "^3.1.0",
"eslint": "^5.4.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"jest": "^23.5.0",
"rollup": "^0.65.2",
"rollup-plugin-babel": "^3.0.4",
"rollup-plugin-uglify": "^3.0.0"
}
}