forked from ai/size-limit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 3.02 KB
/
Copy pathpackage.json
File metadata and controls
129 lines (129 loc) · 3.02 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "size-limit",
"version": "1.3.7",
"description": "Calculate the real cost to run your JS app or lib to keep good performance. Show error in pull request if the cost exceeds the limit.",
"keywords": [
"size",
"limit",
"travis",
"ci",
"bundle",
"webpack"
],
"author": "Andrey Sitnik <andrey@sitnik.ru>",
"license": "MIT",
"repository": "ai/size-limit",
"bin": "cli.js",
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"bytes": "^3.1.0",
"chalk": "^2.4.2",
"ci-job-number": "^0.3.0",
"compression-webpack-plugin": "^3.0.0",
"cosmiconfig": "^5.2.1",
"css-loader": "^3.0.0",
"del": "^4.1.1",
"escape-string-regexp": "^2.0.0",
"estimo": "^1.0.0",
"file-loader": "^4.0.0",
"globby": "^9.2.0",
"gzip-size": "^5.1.1",
"make-dir": "^3.0.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"react": "16.8.6",
"read-pkg-up": "^6.0.0",
"style-loader": "^0.23.1",
"webpack": "^4.34.0",
"webpack-bundle-analyzer": "^3.3.2",
"yargs": "^13.2.4"
},
"devDependencies": {
"@babel/runtime": "^7.4.5",
"@logux/eslint-config": "^28.2.2",
"@storeon/crosstab": "^0.4.0",
"clean-publish": "^1.1.2",
"cross-spawn": "^6.0.5",
"eslint": "^5.16.0",
"eslint-ci": "^1.0.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-import-helpers": "^1.0.1",
"eslint-plugin-jest": "^22.6.4",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-prefer-let": "^1.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-standard": "^4.0.0",
"husky": "^2.4.1",
"jest": "^24.8.0",
"lint-staged": "^8.2.1",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"yaspeller-ci": "^1.0.1"
},
"scripts": {
"spell": "yaspeller-ci *.md",
"lint": "eslint-ci *.js test/{fixtures/**/,}*.js",
"test": "jest -i && yarn run lint && yarn run spell"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.md": "yaspeller-ci",
"*.js": "eslint"
},
"jest": {
"testEnvironment": "node",
"modulePathIgnorePatterns": [
"<rootDir>/test/fixtures"
]
},
"eslintConfig": {
"extends": "@logux/eslint-config/node",
"rules": {
"security/detect-non-literal-require": "off",
"security/detect-non-literal-regexp": "off",
"import-helpers/order-imports": "off",
"global-require": "off"
}
},
"yaspeller": {
"lang": "en",
"ignoreCapitalization": true,
"ignoreText": [
" \\(by [^)]+\\)."
],
"dictionary": [
"Autoprefixer",
"Browserslist",
"bundler",
"CI",
"EmojiMart",
"gzip",
"js",
"JS",
"KB",
"linter",
"Logux",
"MobX",
"nanoid",
"npm",
"polyfills",
"PostCSS",
"Rollup",
"Storeon",
"Travis",
"UI",
"Versioning",
"Vue",
"webpack",
"webpack’s",
"JSDoc"
]
}
}