forked from ai/size-limit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.64 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
{
"name": "size-limit",
"version": "0.7.0",
"description": "Show package size and return error if it is bigger than limits allow",
"keywords": [
"size",
"limit"
],
"author": "Andrey Sitnik <[email protected]>",
"license": "MIT",
"repository": "ai/size-limit",
"bin": "cli.js",
"dependencies": {
"babili-webpack-plugin": "^0.1.2",
"bytes": "^2.5.0",
"chalk": "^2.0.1",
"ci-job-number": "^0.3.0",
"compression-webpack-plugin": "^0.4.0",
"file-loader": "^0.11.2",
"globby": "^6.1.0",
"memory-fs": "^0.4.1",
"read-pkg-up": "^2.0.0",
"webpack": "^3.2.0",
"webpack-bundle-analyzer": "^2.8.3",
"yargs": "^8.0.2"
},
"devDependencies": {
"cross-spawn": "^5.1.0",
"eslint": "^4.2.0",
"eslint-config-logux": "^16.0.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jest": "^20.0.3",
"eslint-plugin-node": "^5.1.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-standard": "^3.0.1",
"jest": "^20.0.4",
"lint-staged": "^4.0.1",
"pre-commit": "^1.2.2",
"redux": "^3.7.2",
"yaspeller-ci": "^0.6.0"
},
"scripts": {
"lint-staged": "lint-staged",
"spellcheck": "yaspeller-ci *.md",
"lint": "eslint *.js test/{fixtures/**/,}*.js",
"test": "jest && yarn run lint && yarn run spellcheck"
},
"engines": {
"node": ">=4.0.0"
},
"eslintConfig": {
"extends": "eslint-config-logux/node4",
"globals": {
"jasmine": true
}
},
"lint-staged": {
"*.md": "yaspeller-ci",
"*.js": "eslint"
},
"pre-commit": [
"lint-staged"
]
}