-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.59 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
{
"name": "buried_point",
"version": "1.0.0",
"main": "dist/weapptracker.min.js",
"author": "hotsuitor<[email protected]>",
"license": "MIT",
"scripts": {
"dev": "cross-env rollup --config rollup.config.js --environment entry:src/index.js,dest:dist/weapptracker.js",
"build": "cross-env rollup --config rollup.config.js --environment entry:src/index.js,dest:dist/weapptracker.min.js,uglify",
"watch": "cross-env rollup --config rollup.config.js --environment entry:src/index.js,dest:dist/weapptracker.js -w",
"test": "cross-env BABEL_ENV=test jest",
"codecov": "pnpx codecov"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^21.0.3",
"@rollup/plugin-node-resolve": "^13.2.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"core-js": "3",
"cross-env": "^7.0.3",
"jest": "^27.5.1",
"rollup": "^2.70.1",
"rollup-plugin-uglify": "^6.0.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/touxing/weapp_buried_point_sdk.git"
},
"bugs": {
"url": "https://github.com/touxing/weapp_buried_point_sdk/issues"
},
"homepage": "https://github.com/touxing/weapp_buried_point_sdk#readme",
"jest": {
"verbose": true,
"testEnvironment": "node",
"automock": false,
"collectCoverage": true,
"coverageDirectory": "./coverage/",
"testPathIgnorePatterns": [
"./__tests__/wx.js"
],
"setupFiles": [
"./__tests__/wx.js"
]
}
}