-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
77 lines (77 loc) · 1.54 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": "rollup-plugin-size-snapshot",
"version": "0.12.0",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "babel src --out-dir dist",
"test": "jest",
"prepublish": "yarn build"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,md}": [
"prettier --write"
]
},
"babel": {
"presets": [
"@babel/flow",
[
"@babel/env",
{
"targets": {
"node": "10"
}
}
]
]
},
"jest": {
"testEnvironment": "node"
},
"repository": "https://github.com/TrySound/rollup-plugin-size-snapshot",
"author": "Bogdan Chadkin <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-flow": "^7.9.0",
"babel-jest": "^26.0.1",
"flow-bin": "^0.125.1",
"husky": "^4.2.5",
"jest": "^26.0.1",
"lint-staged": "^10.2.6",
"prettier": "2.0.5",
"redux": "^4.0.5",
"rollup": "^2.10.8",
"rollup-plugin-terser": "^6.0.0",
"strip-ansi": "^6.0.0"
},
"peerDependencies": {
"rollup": "^2.0.0"
},
"dependencies": {
"@rollup/plugin-replace": "^2.3.2",
"acorn": "^7.2.0",
"bytes": "^3.1.0",
"chalk": "^4.0.0",
"gzip-size": "^5.1.1",
"jest-diff": "^26.0.1",
"memory-fs": "^0.5.0",
"terser": "^4.7.0",
"webpack": "^4.43.0"
},
"engines": {
"node": ">=10",
"npm": ">=6",
"yarn": ">=1"
}
}