-
-
Notifications
You must be signed in to change notification settings - Fork 180
/
package.json
77 lines (77 loc) · 2.11 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "bundlesize",
"version": "0.18.2",
"description": "Keep your library size in check",
"repository": {
"type": "git",
"url": "git+https://github.com/siddharthkp/bundlesize.git"
},
"main": "index.js",
"bin": {
"bundlesize": "index.js",
"bundlesize-init": "src/init-status.js",
"bundlesize-pipe": "pipe.js"
},
"scripts": {
"precommit": "lint-staged",
"t": "yarn test",
"test": "ava -v tests/index.js",
"test:old": "npm run test:default && npm run test:no-compression && npm run test:brotli-compression",
"test:default": "node index && cat pipe.js | node pipe --name pipe.js --max-size 1kB",
"test:no-compression": "cat pipe.js | node pipe --compression none --name pipe.js",
"test:brotli-compression": "cat pipe.js | node pipe --compression brotli --name pipe.js"
},
"keywords": [
"library",
"size",
"check",
"build",
"maxSize"
],
"files": [
"index.js",
"src",
"pipe.js"
],
"author": "siddharthkp",
"license": "MIT",
"dependencies": {
"axios": "^1.6.2",
"brotli-size": "0.1.0",
"bytes": "^3.1.0",
"ci-env": "^1.4.0",
"commander": "^2.20.0",
"cosmiconfig": "^5.2.1",
"github-build": "^1.2.4",
"glob": "^7.1.4",
"gzip-size": "^4.0.0",
"prettycli": "^1.4.3"
},
"lint-staged": {
"*.js": [
"prettier",
"git add"
]
},
"devDependencies": {
"ava": "^2.1.0",
"babel-cli": "^7.0.0-beta.3",
"babel-core": "^7.0.0-bridge.0",
"babel-plugin-syntax-async-functions": "7.0.0-alpha.19",
"babel-plugin-transform-flow-strip-types": "7.0.0-alpha.19",
"babel-plugin-transform-regenerator": "7.0.0-alpha.19",
"babel-plugin-transform-typescript": "7.0.0-alpha.19",
"babel-preset-es2015": "^7.0.0-beta.3",
"babel-preset-stage-3": "^7.0.0-beta.3",
"babel-traverse": "^7.0.0-beta.3",
"execa": "^2.0.1",
"husky": "^0.14.3",
"lint-staged": "^7.1.1",
"prettier": "^1.6.0"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/bundlesize",
"logo": "https://opencollective.com/opencollective/logo.txt"
}
}