forked from ai/size-limit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.17 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
{
"name": "size-limit",
"version": "0.14.0",
"description": "Prevent JS libraries bloat. If you accidentally add a massive dependency, Size Limit will throw an error.",
"keywords": [
"size",
"limit",
"travis",
"ci",
"bundle",
"webpack"
],
"author": "Andrey Sitnik <[email protected]>",
"license": "MIT",
"repository": "ai/size-limit",
"bin": "cli.js",
"dependencies": {
"bytes": "^3.0.0",
"chalk": "^2.3.0",
"ci-job-number": "^0.3.0",
"compression-webpack-plugin": "^1.1.3",
"cosmiconfig": "^3.1.0",
"css-loader": "^0.28.8",
"escape-string-regexp": "^1.0.5",
"file-loader": "^1.1.6",
"globby": "^7.1.1",
"gzip-size": "^4.1.0",
"memory-fs": "^0.4.1",
"read-pkg-up": "^3.0.0",
"style-loader": "^0.19.1",
"uglifyjs-webpack-plugin": "^1.1.6",
"webpack": "^3.10.0",
"webpack-bundle-analyzer": "^2.9.2",
"yargs": "^10.1.1"
},
"devDependencies": {
"attr-accept": "^1.1.0",
"cross-spawn": "^5.1.0",
"eslint": "^4.15.0",
"eslint-ci": "^0.1.1",
"eslint-config-logux": "^17.0.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jest": "^21.6.2",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-standard": "^3.0.1",
"jest": "^22.0.6",
"lint-staged": "^6.0.0",
"pre-commit": "^1.2.2",
"redux": "^3.7.2",
"yaspeller-ci": "^1.0.0"
},
"scripts": {
"lint-staged": "lint-staged",
"spellcheck": "yaspeller-ci *.md",
"lint": "eslint-ci *.js test/{fixtures/**/,}*.js",
"test": "jest && yarn run lint && yarn run spellcheck"
},
"engines": {
"node": ">=4.0.0"
},
"eslintConfig": {
"extends": "eslint-config-logux/node4",
"rules": {
"security/detect-non-literal-require": "off",
"security/detect-non-literal-regexp": "off",
"global-require": "off"
}
},
"jest": {
"testEnvironment": "node",
"modulePathIgnorePatterns": [
"<rootDir>/test/fixtures"
]
},
"lint-staged": {
"*.md": "yaspeller-ci",
"*.js": "eslint"
},
"pre-commit": [
"lint-staged"
]
}