-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
80 lines (80 loc) · 2.63 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
76
77
78
79
80
{
"name": "@mpapp/monitor",
"version": "1.0.2",
"description": "小程序监控sdk",
"main": "dist/mp_monitor.min.js",
"module": "dist/mp_monitor.es.js",
"types": "types/sdk.d.ts",
"scripts": {
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:min": "npx rollup --config",
"build": "run-s build:cjs build:min",
"publish": "yarn && yarn run build && npm publish",
"start": "run-p build-w",
"lint-w": "esw src --clear -w --ext .ts",
"build-w": "tsc -w --inlineSourceMap",
"fix": "esw src --fix --ext .ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BubbleM/mp_monitor.git"
},
"keywords": [
"小程序、性能监控、异常监控、行为轨迹"
],
"author": "BubbleM",
"license": "ISC",
"bugs": {
"url": "https://github.com/BubbleM/mp_monitor/issues"
},
"homepage": "https://github.com/BubbleM/mp_monitor#readme",
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/plugin-proposal-decorators": "^7.3.0",
"@babel/plugin-transform-flow-strip-types": "^7.3.4",
"@babel/preset-env": "^7.15.0",
"@babel/preset-typescript": "^7.15.0",
"@types/jest": "^25.1.4",
"@types/react": "^16.9.10",
"@types/react-native": "^0.62.10",
"babel-eslint": "^10.0.1",
"babel-jest": "^26.1.0",
"babel-plugin-import": "^1.11.0",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-remove-console": "^6.9.4",
"eslint": "^7.6.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-flowtype": "^3.8.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-native": "^3.8.1",
"eslint-plugin-typescript": "^0.14.0",
"eslint-watch": "^7.0.0",
"husky": "^2.2.0",
"jest": "^24.9.0",
"metro-react-native-babel-preset": "0.51.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"pretty-quick": "^1.10.0",
"react-test-renderer": "16.6.3",
"replace-in-file": "^6.0.0",
"rimraf": "^3.0.0",
"rollup": "^2.56.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript2": "^0.30.0",
"rollup-plugin-uglify": "^6.0.4",
"standard": "^12.0.1",
"tslib": "^2.3.0",
"ts-jest": "^24.3.0",
"typescript": "^3.4.5",
"uglify-es": "^3.3.9"
}
}