-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.33 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
{
"name": "vite-plugin-build-monitoring",
"version": "1.1.1",
"description": "Monitor ram Memory when building, bundle sizing ans node_modules sizing",
"main": "dist/index.js",
"files": [
"dist",
"README.md"
],
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"posttest": "npm run lint",
"test": "jest --silent"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ankorstore/vite-plugin-build-monitoring.git"
},
"keywords": [
"vite",
"monitoring",
"ram",
"memoery",
"bundle",
"size"
],
"author": "MatthD",
"license": "MIT",
"bugs": {
"url": "https://github.com/ankorstore/vite-plugin-build-monitoring/issues"
},
"homepage": "https://github.com/ankorstore/vite-plugin-build-monitoring#readme",
"dependencies": {
"@types/colors": "^1.2.1",
"@types/jest": "^29.4.0",
"@types/lodash": "^4.14.191",
"@types/node": "^18.14.2",
"colors": "^1.4.0",
"fast-folder-size": "^1.7.1",
"jest": "^29.4.3",
"lodash": "^4.17.21",
"rxjs": "^7.8.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"devDependencies": {
"@types/node": "^14.11.2",
"gts": "^3.1.1",
"typescript": "~4.7.0"
}
}