This repository was archived by the owner on May 31, 2021. It is now read-only.
forked from bundlewatch/bundlewatch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.2 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.2 KB
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
{
"name": "@spotim/bundlewatch",
"version": "1.0.5",
"description": "Keep watch of your bundle size",
"repository": {
"type": "git",
"url": "git+https://github.com/bundlewatch/bundlewatch.git"
},
"main": "lib/bin/index.js",
"bin": {
"bundlewatch": "lib/bin/index.js"
},
"files": [
"lib"
],
"keywords": [
"library",
"size",
"check",
"build",
"maxSize"
],
"author": "bundlewatch",
"license": "MIT",
"dependencies": {
"@slack/webhook": "^5.0.2",
"axios": "^0.19.0",
"bytes": "^3.0.0",
"chalk": "^2.4.0",
"commander": "^2.15.1",
"glob": "^7.1.2",
"gzip-size": "^5.1.1",
"jsonpack": "^1.1.5",
"lodash.merge": "^4.6.1",
"read-pkg-up": "^6.0.0"
},
"devDependencies": {
"axios-mock-adapter": "^1.15.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^10.0.2",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"coveralls": "^3.0.1",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jest": "^22.7.2",
"eslint-plugin-prettier": "^3.1.0",
"husky": "^3.0.0",
"jest": "^24.8.0",
"jest-junit": "^6.4.0",
"lint-staged": "^9.2.0",
"prettier": "^1.6.0"
},
"jest": {
"testEnvironment": "node",
"collectCoverage": true,
"coverageDirectory": "artifacts/test_results/jest/coverage"
},
"engines": {
"node": ">=6.11.5"
},
"bundlewatch": {
"files": [
{
"path": "./__testdata__/*.jpg",
"maxSize": "500kB",
"compression": "none"
},
{
"path": "./lib/**/*.js",
"maxSize": "2kB"
},
{
"path": "./artifacts/*.tgz",
"maxSize": "15kB"
}
]
}
}