forked from clouDr-f2e/monitor
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 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
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "@zyf2e/mitojs",
"version": "0.0.1",
"description": "A SDK for monitoring browser errors",
"main": "/dist/mito.js",
"types": "/dist/types/index.d.ts",
"scripts": {
"build": "IGNORE=localDebug rollup --config",
"watch:example": "INCLUDE=examplePackage rollup --config --watch",
"watch:groot": "INCLUDE=localDebug rollup --config --watch",
"watch": "rollup --config --watch"
},
"author": "chenjinhuo",
"repository": {
"type": "git",
"url": "git+https://github.com/clouDr-f2e/mitojs.git"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.ts": [
"prettier --write"
]
},
"keywords": [
"collect",
"sdk",
"error",
"broswer"
],
"license": "MIT",
"devDependencies": {
"@rollup/plugin-alias": "^3.1.1",
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-html": "^0.2.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^8.4.0",
"@rollup/plugin-typescript": "^4.1.2",
"@types/node-fetch": "^2.5.7",
"@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/parser": "^3.6.1",
"cz-conventional-changelog": "^3.2.0",
"eslint": "^7.4.0",
"eslint-plugin-html": "^6.0.2",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"rollup": "^2.21.0",
"rollup-plugin-terser": "^6.1.0",
"rollup-plugin-typescript2": "^0.27.1",
"typescript": "^3.9.3"
},
"dependencies": {},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}