-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.01 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
{
"name": "bundled-size",
"version": "0.3.0",
"description": "Get the bundled size of a package, including its dependencies",
"main": "index.js",
"bin": {
"bundled-size": "cli.js"
},
"files": [
"index.js",
"cli.js"
],
"scripts": {
"test": "prettier -c . && eslint ."
},
"repository": "billyjanitsch/bundled-size",
"author": "Billy Janitsch <billyjanitsch@gmail.com> (https://billyjanitsch.com)",
"license": "MIT",
"prettier": "@kensho-technologies/prettier-config",
"dependencies": {
"@rollup/plugin-node-resolve": "^9.0.0",
"execa": "^4.0.3",
"gzip-size": "^5.1.1",
"minimist": "^1.2.5",
"ora": "^5.1.0",
"pacote": "^11.1.11",
"pretty-bytes": "^5.4.1",
"rollup": "^2.32.1",
"rollup-plugin-terser": "^7.0.2",
"tempy": "^1.0.0"
},
"devDependencies": {
"@kensho-technologies/eslint-config": "^21.0.0",
"@kensho-technologies/prettier-config": "^1.0.0",
"eslint": "^7.11.0",
"prettier": "^2.1.2",
"typescript": "^4.0.3"
}
}