-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
38 lines (38 loc) · 966 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
36
37
38
{
"name": "rrweb-sizer",
"version": "0.1.0",
"description": "analyze rrweb events size",
"main": "lib/index.js",
"scripts": {
"build": "tsc -b .",
"typings": "tsc -d --emitDeclarationOnly --declarationDir typings",
"test": "jest",
"lint": "eslint src --ext .ts",
"prepublish": "npm run build && npm run typings"
},
"keywords": [
"rrweb",
"size"
],
"author": "[email protected]",
"license": "MIT",
"dependencies": {
"@msgpack/msgpack": "^1.10.0",
"@types/pako": "^1.0.1",
"pako": "^1.0.10",
"rrweb": "^0.7.27",
"rrweb-snapshot": "^0.7.23"
},
"devDependencies": {
"@types/jest": "^24.0.25",
"@types/node": "^13.1.4",
"@typescript-eslint/eslint-plugin": "^2.14.0",
"@typescript-eslint/parser": "^2.14.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"ts-jest": "^24.2.0",
"typescript": "^3.7.4"
}
}