-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 975 Bytes
/
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
{
"name": "@digitaloptgroup/rum",
"version": "0.0.1-dev-preview-03",
"description": "Real world performance monitoring",
"main": "dist/bundled-scripts.js",
"scripts": {
"test": "jest --watch --verbose",
"build": "rm dist/head* || true && rm dist/perf* || true && rm dist/bundled-scripts.js || true && webpack && node bundle-scripts.js"
},
"author": "Digital Optimization Group LLC",
"license": "MIT",
"devDependencies": {
"@types/express": "^4.16.1",
"@types/jest": "^24.0.11",
"@types/node": "^11.9.5",
"@types/ua-parser-js": "^0.7.32",
"jest": "^24.8.0",
"jest-express": "^1.10.0",
"ts-jest": "^24.0.0",
"ts-loader": "^6.0.0",
"typescript": "^3.4.5",
"webpack": "^4.31.0",
"webpack-cli": "^3.3.2"
},
"dependencies": {
"first-input-delay": "^0.1.3",
"mock-raf": "^1.0.1",
"tti-polyfill": "^0.2.2"
},
"typings": "src/index.d.ts",
"sideEffects": false,
"files": [
"/dist"
]
}