forked from siddharthkp/bundlesize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 2.68 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "bundlesize",
"version": "0.17.1",
"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",
"test": "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",
"lint": "eslint src store/*.js"
},
"keywords": [
"library",
"size",
"check",
"build",
"maxSize"
],
"files": [
"index.js",
"src",
"pipe.js"
],
"engines": {
"npm": "^5.0.0"
},
"author": "siddharthkp",
"license": "MIT",
"dependencies": {
"axios": "^0.17.0",
"brotli-size": "0.0.1",
"bytes": "^3.0.0",
"ci-env": "^1.4.0",
"commander": "^2.11.0",
"github-build": "^1.2.0",
"glob": "^7.1.2",
"gzip-size": "^4.0.0",
"prettycli": "^1.4.3",
"read-pkg-up": "^3.0.0"
},
"bundlesize": [
{
"path": "./index.js",
"maxSize": "600B"
},
{
"path": "./src/files.js",
"maxSize": "600B"
},
{
"path": "./src/compressed-size.js",
"maxSize": "420B",
"compression": "none"
}
],
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"devDependencies": {
"eslint": "^4.5.0",
"eslint-config-airbnb-base": "^12.0.0",
"eslint-config-prettier": "^2.3.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-prettier": "^2.2.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"husky": "^0.14.3",
"lint-staged": "^7.1.1",
"prettier": "^1.6.0",
"babel-cli": "7.0.0-alpha.19",
"babel-core": "7.0.0-alpha.19",
"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-alpha.19",
"babel-preset-stage-3": "7.0.0-alpha.19",
"babel-traverse": "7.0.0-alpha.19"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/bundlesize",
"logo": "https://opencollective.com/opencollective/logo.txt"
}
}