-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1013 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
39
40
41
42
43
44
45
46
{
"name": "@block65/bundlesize",
"version": "1.0.1",
"private": false,
"license": "UNLICENSED",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./dist/lib/index.d.ts",
"default": "./dist/lib/index.js"
}
},
"bin": {
"bundlesize": "./dist/bin/bundlesize.js"
},
"files": [
"./dist/lib/*.js",
"./dist/bin/*.js",
"./dist/lib/*.d.ts"
],
"scripts": {
"preversion": "make test"
},
"dependencies": {
"ajv": "^8.12.0",
"colorette": "^2.0.20",
"cosmiconfig": "^8.1.3",
"glob": "^10.2.6",
"pretty-bytes": "^6.1.0"
},
"devDependencies": {
"@block65/eslint-config": "^9.2.0",
"@types/node": "^20.2.3",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"eslint": "^8.41.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.8",
"typescript": "^5.0.4"
},
"engines": {
"node": ">=18.0.0"
}
}