forked from clouDr-f2e/monitor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 3.22 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
81
82
83
84
85
86
87
88
89
90
91
92
{
"version": "2.1.53",
"private": true,
"license": "MIT",
"author": "cjinhuo",
"scripts": {
"build": "node script/build.js",
"watch": "node script/build.js --watch=true",
"version": "node script/version.js",
"release": "node script/release.js",
"examples": "cross-env NODE_ENV=demo ts-node ./examples/server/index.ts",
"e2e": "`nohup ts-node ./examples/server/index.ts >/dev/null 2>&1 &` && jest --runTestsByPath ./test/e2e/JS/index.test.ts ./test/e2e/Vue/index.test.ts ./test/e2e/Vue3/index.test.ts ./test/e2e/React/index.test.ts --config jest.config.ts",
"unit": "jest --config jsdom.jest.config.ts",
"test": " npm run unit && npm run e2e",
"e2e:mini": "jest --runTestsByPath ./test/e2e/Mini/index.test.ts --detectOpenHandles --forceExit --config jest.config.ts",
"e2e:mini:performance": "jest --runTestsByPath ./test/e2e/MiniPerformance/index.test.ts --detectOpenHandles --forceExit --config jest.config.ts",
"format": "prettier --write \"packages/**/*.ts?(x)\" && eslint --fix --ext .ts packages",
"format:package": "prettier --write \"packages/**/package.json\"",
"commit": "git add . && git cz",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/clouDr-f2e/mitojs.git"
},
"keywords": [
"mitojs",
"error",
"collect",
"broswer",
"miniPrograme"
],
"devDependencies": {
"@microsoft/api-extractor": "^7.13.2",
"@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": "^11.2.1",
"@rollup/plugin-typescript": "^4.1.2",
"@types/express": "^4.17.9",
"@types/jest": "^26.0.19",
"@types/node-fetch": "^2.5.7",
"@types/puppeteer": "^5.4.2",
"@types/wechat-miniprogram": "^3.1.0",
"@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/parser": "^3.6.1",
"cross-env": "^7.0.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.4.0",
"eslint-plugin-html": "^6.0.2",
"execa": "^2.0.3",
"express": "^4.17.1",
"fs-extra": "^9.1.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"lint-staged": "^10.2.11",
"minimist": "^1.2.5",
"miniprogram-automator": "^0.10.0",
"msw": "^0.24.3",
"open": "^7.3.0",
"prettier": "^2.0.5",
"puppeteer": "^5.5.0",
"rollup": "^2.45.2",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-clear": "^2.0.7",
"rollup-plugin-sizes": "^1.0.4",
"rollup-plugin-terser": "^6.1.0",
"rollup-plugin-typescript2": "^0.27.1",
"rollup-plugin-visualizer": "^5.4.1",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"tsconfig-paths": "^3.9.0",
"typescript": "^3.9.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@zyf2e/monitor-browser": "^2.1.29",
"@zyf2e/monitor-core": "^2.1.29",
"@zyf2e/monitor-react": "^2.1.29",
"@zyf2e/monitor-shared": "^2.1.29",
"@zyf2e/monitor-types": "^2.1.29",
"@zyf2e/monitor-utils": "^2.1.29",
"@zyf2e/monitor-vue": "^2.1.29",
"core-js": "^3.19.1",
"path-to-regexp": "^6.2.0"
}
}