-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.02 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.02 KB
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
{
"name": "error-watch",
"version": "1.0.0",
"description": "前端错误解析",
"main": "dist/errorWatch.js",
"module": "dist/errorWatch.esm.js",
"unpkg": "dist/errorWatch.min.js",
"jsdelivr": "dist/errorWatch.min.js",
"scripts": {
"test": "jest --color",
"build": "rollup --config"
},
"author": "godis",
"keywords": [
"javascript",
"error",
"前端错误",
"错误监控"
],
"repository": {
"type": "git",
"url": "https://github.com/Godiswill/errorWatch.git"
},
"license": "MIT",
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"<rootDir>/__tests__/fixtures/"
]
},
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-latest": "^6.24.1",
"jest": "^26.1.0",
"rollup": "^2.22.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-uglify": "^6.0.4"
}
}