1 | {
|
2 | "name": "bundlesize",
|
3 | "version": "0.18.2",
|
4 | "description": "Keep your library size in check",
|
5 | "repository": {
|
6 | "type": "git",
|
7 | "url": "git+https://github.com/siddharthkp/bundlesize.git"
|
8 | },
|
9 | "main": "index.js",
|
10 | "bin": {
|
11 | "bundlesize": "index.js",
|
12 | "bundlesize-init": "src/init-status.js",
|
13 | "bundlesize-pipe": "pipe.js"
|
14 | },
|
15 | "scripts": {
|
16 | "precommit": "lint-staged",
|
17 | "t": "yarn test",
|
18 | "test": "ava -v tests/index.js",
|
19 | "test:old": "npm run test:default && npm run test:no-compression && npm run test:brotli-compression",
|
20 | "test:default": "node index && cat pipe.js | node pipe --name pipe.js --max-size 1kB",
|
21 | "test:no-compression": "cat pipe.js | node pipe --compression none --name pipe.js",
|
22 | "test:brotli-compression": "cat pipe.js | node pipe --compression brotli --name pipe.js"
|
23 | },
|
24 | "keywords": [
|
25 | "library",
|
26 | "size",
|
27 | "check",
|
28 | "build",
|
29 | "maxSize"
|
30 | ],
|
31 | "files": [
|
32 | "index.js",
|
33 | "src",
|
34 | "pipe.js"
|
35 | ],
|
36 | "author": "siddharthkp",
|
37 | "license": "MIT",
|
38 | "dependencies": {
|
39 | "axios": "^1.6.2",
|
40 | "brotli-size": "0.1.0",
|
41 | "bytes": "^3.1.0",
|
42 | "ci-env": "^1.4.0",
|
43 | "commander": "^2.20.0",
|
44 | "cosmiconfig": "^5.2.1",
|
45 | "github-build": "^1.2.4",
|
46 | "glob": "^7.1.4",
|
47 | "gzip-size": "^4.0.0",
|
48 | "prettycli": "^1.4.3"
|
49 | },
|
50 | "lint-staged": {
|
51 | "*.js": [
|
52 | "prettier",
|
53 | "git add"
|
54 | ]
|
55 | },
|
56 | "devDependencies": {
|
57 | "ava": "^2.1.0",
|
58 | "babel-cli": "^7.0.0-beta.3",
|
59 | "babel-core": "^7.0.0-bridge.0",
|
60 | "babel-plugin-syntax-async-functions": "7.0.0-alpha.19",
|
61 | "babel-plugin-transform-flow-strip-types": "7.0.0-alpha.19",
|
62 | "babel-plugin-transform-regenerator": "7.0.0-alpha.19",
|
63 | "babel-plugin-transform-typescript": "7.0.0-alpha.19",
|
64 | "babel-preset-es2015": "^7.0.0-beta.3",
|
65 | "babel-preset-stage-3": "^7.0.0-beta.3",
|
66 | "babel-traverse": "^7.0.0-beta.3",
|
67 | "execa": "^2.0.1",
|
68 | "husky": "^0.14.3",
|
69 | "lint-staged": "^7.1.1",
|
70 | "prettier": "^1.6.0"
|
71 | },
|
72 | "collective": {
|
73 | "type": "opencollective",
|
74 | "url": "https://opencollective.com/bundlesize",
|
75 | "logo": "https://opencollective.com/opencollective/logo.txt"
|
76 | }
|
77 | }
|