-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1015 Bytes
/
package.json
File metadata and controls
47 lines (47 loc) · 1015 Bytes
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
{
"name": "rollup-plugin-size",
"version": "0.3.1",
"description": "Track compressed Rollup asset sizes over time.",
"type": "module",
"main": "rollup-plugin-size.js",
"scripts": {
"test": "eslint"
},
"repository": "luwes/rollup-plugin-size",
"author": "Wesley Luyten <me@wesleyluyten.com> (https://wesleyluyten.com)",
"license": "Apache-2.0",
"dependencies": {
"axios": "^1.2.2",
"chalk": "^5.2.0",
"ci-env": "^1.17.0",
"fs-extra": "^11.1.0",
"glob": "^8.0.3",
"minimatch": "^5.1.2",
"pretty-bytes": "^6.0.0",
"zlib": "^1.0.5"
},
"devDependencies": {
"eslint": "^8.30.0",
"prettier": "^2.8.1"
},
"prettier": {
"tabWidth": 2,
"singleQuote": true,
"semi": true
},
"eslintConfig": {
"root": true,
"env": {
"browser": true,
"es2020": true,
"node": true
},
"extends": [
"eslint:recommended"
],
"parserOptions": {
"ecmaVersion": 2022,
"sourceType": "module"
}
}
}