-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
120 lines (120 loc) · 3.5 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "spy-client",
"version": "2.1.12",
"description": "spy client",
"main": "dist/spy-client.js",
"module": "dist/spy-client.esm.js",
"typings": "dist/spy-client.d.ts",
"scripts": {
"w_dev": "rm -fr dist && NODE_ENV=development webpack --config webpack.dev.config.ts",
"w_watch": "rm -fr dist && NODE_ENV=development webpack -w --config webpack.dev.config.ts",
"w_build": "rm -fr dist && NODE_ENV=production webpack --config webpack.prod.config.ts",
"dev": "rollup -c --environment NODE_ENV:development",
"watch": "NODE_OPTIONS='--max-old-space-size=4096' rollup -cw --environment NODE_ENV:development",
"build": "rollup -c --environment NODE_ENV:production",
"lint": "eslint src/**/*.ts",
"example": "npm run dev && echo 'open url http://localhost:8000/example' && python -m SimpleHTTPServer 8000 ",
"test": "karma start karma.conf.js",
"release_pre": "rm -fr dist && npm run build && npm run lint && npm run test",
"release": "npm version patch && npm publish --registry=https://registry.npmjs.org",
"release_post": "git push origin master && git push origin --tags"
},
"directories": {
"example": "example",
"test": "test"
},
"dependencies": {
"core-js": "^3.6.4"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/eslint-parser": "^7.15.0",
"@babel/eslint-plugin": "^7.14.5",
"@babel/preset-env": "^7.5.5",
"@ecomfe/eslint-config": "^7.2.1",
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"@rollup/plugin-typescript": "^8.2.5",
"@types/glob": "^7.1.1",
"@types/jasmine": "^3.5.10",
"@types/node": "^12.6.8",
"@types/uglifyjs-webpack-plugin": "^1.1.0",
"@types/webpack": "^4.4.35",
"@types/webpack-merge": "^4.1.5",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.0.6",
"cache-loader": "^4.1.0",
"css-loader": "^3.1.0",
"eslint": "^6.8.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.24.1",
"fastify": "^3.21.0",
"fastify-cors": "^6.0.2",
"fecs": "^1.6.4",
"file-loader": "^4.1.0",
"jasmine-core": "^3.4.0",
"karma": "^6.3.4",
"karma-chrome-launcher": "^3.1.0",
"karma-jasmine": "^2.0.1",
"karma-jasmine-html-reporter": "^1.4.2",
"karma-typescript": "^5.5.2",
"less": "^3.9.0",
"less-loader": "^5.0.0",
"rollup": "^2.56.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-typescript2": "^0.30.0",
"rollup-plugin-uglify": "^6.0.4",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"ts-loader": "^6.0.4",
"ts-node": "^8.3.0",
"typescript": "^4.3.5",
"uglifyjs-webpack-plugin": "^2.1.3",
"url-loader": "^2.1.0"
},
"keywords": [
"spy",
"client",
"Longtask",
"frontend monitor",
"performance monitor",
"exception monitor",
"jsError",
"whiteScreenError",
"resourceError",
"performance timing",
"Largest Contentful Paint",
"FID",
"TTI",
"Cumulative Layout Shift",
"Memory",
"Resource Timing"
],
"repository": {
"type": "git",
"url": ""
},
"author": "kaivean",
"license": "ISC",
"babel": {
"comments": false,
"presets": [],
"env": {
"test": {
"plugins": [
"istanbul"
]
}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"ie >= 9",
"android >= 4",
"ios >= 9"
]
}