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
| {
| "name": "browserslist",
| "version": "3.2.8",
| "description": "Share target browsers between different front-end tools, like Autoprefixer, Stylelint and babel-env-preset",
| "keywords": [
| "caniuse",
| "browsers",
| "target"
| ],
| "author": "Andrey Sitnik <andrey@sitnik.ru>",
| "license": "MIT",
| "repository": "browserslist/browserslist",
| "dependencies": {
| "caniuse-lite": "^1.0.30000844",
| "electron-to-chromium": "^1.3.47"
| },
| "bin": "./cli.js",
| "devDependencies": {
| "cross-spawn": "^6.0.5",
| "eslint": "^4.19.1",
| "eslint-ci": "^0.1.1",
| "eslint-config-logux": "^22.1.0",
| "eslint-config-standard": "^11.0.0",
| "eslint-plugin-es5": "^1.3.1",
| "eslint-plugin-import": "^2.12.0",
| "eslint-plugin-jest": "^21.15.1",
| "eslint-plugin-node": "^6.0.1",
| "eslint-plugin-promise": "^3.7.0",
| "eslint-plugin-security": "^1.4.0",
| "eslint-plugin-standard": "^3.1.0",
| "fs-extra": "^5.0.0",
| "jest": "^22.4.4",
| "lint-staged": "^7.1.2",
| "pre-commit": "^1.1.3",
| "size-limit": "^0.18.0",
| "yaspeller-ci": "^1.0.0"
| },
| "jest": {
| "testEnvironment": "node",
| "coverageThreshold": {
| "global": {
| "statements": 100
| }
| },
| "modulePathIgnorePatterns": [
| "<rootDir>/test/fixtures"
| ]
| },
| "scripts": {
| "lint-staged": "lint-staged",
| "spellcheck": "yaspeller-ci README.md CHANGELOG.md",
| "lint": "eslint-ci *.js test/*.js benchmark/*.js",
| "test": "jest --coverage && yarn lint && yarn spellcheck && size-limit"
| },
| "browser": {
| "./node.js": "./browser.js",
| "path": false
| },
| "pre-commit": [
| "lint-staged"
| ]
| }
|
|