forked from browserslist/browserslist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 1.82 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
{
"name": "browserslist",
"version": "2.3.3",
"description": "Share browsers list between different front-end tools, like Autoprefixer, Stylelint and babel-env-preset",
"keywords": [
"caniuse",
"browsers"
],
"author": "Andrey Sitnik <[email protected]>",
"license": "MIT",
"repository": "ai/browserslist",
"dependencies": {
"caniuse-lite": "^1.0.30000715",
"electron-to-chromium": "^1.3.18"
},
"bin": "./cli.js",
"devDependencies": {
"cross-spawn": "^5.1.0",
"eslint": "^4.4.1",
"eslint-config-logux": "^16.0.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-es5": "^1.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jest": "^20.0.3",
"eslint-plugin-node": "^5.1.1",
"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.3",
"pre-commit": "^1.1.3",
"size-limit": "^0.9.0",
"yaspeller-ci": "^0.6.0"
},
"eslintConfig": {
"extends": "eslint-config-logux/browser",
"rules": {
"global-require": "off"
},
"overrides": {
"files": [
"*.test.js"
],
"rules": {
"es5/no-arrow-functions": "off"
}
}
},
"jest": {
"coverageThreshold": {
"global": {
"statements": 100
}
}
},
"size-limit": [
{
"path": "index.js",
"limit": "152 KB"
}
],
"scripts": {
"lint-staged": "lint-staged",
"spellcheck": "yaspeller-ci README.md CHANGELOG.md",
"lint": "eslint *.js test/*.js __mocks__/*.js",
"test": "jest --coverage && yarn lint && yarn spellcheck && size-limit"
},
"lint-staged": {
"*.md": "yaspeller-ci",
"*.js": "eslint"
},
"browser": {
"path": false,
"fs": false
},
"pre-commit": [
"lint-staged"
]
}