UNPKG

2.12 kBJSONView Raw
1{
2 "name": "browserslist",
3 "version": "3.2.4",
4 "description": "Share target browsers between different front-end tools, like Autoprefixer, Stylelint and babel-env-preset",
5 "keywords": [
6 "caniuse",
7 "browsers",
8 "target"
9 ],
10 "author": "Andrey Sitnik <andrey@sitnik.ru>",
11 "license": "MIT",
12 "repository": "browserslist/browserslist",
13 "dependencies": {
14 "caniuse-lite": "^1.0.30000821",
15 "electron-to-chromium": "^1.3.41"
16 },
17 "bin": "./cli.js",
18 "devDependencies": {
19 "cross-spawn": "^6.0.5",
20 "eslint": "^4.19.1",
21 "eslint-ci": "^0.1.1",
22 "eslint-config-logux": "^21.0.0",
23 "eslint-config-standard": "^11.0.0",
24 "eslint-plugin-es5": "^1.2.0",
25 "eslint-plugin-import": "^2.10.0",
26 "eslint-plugin-jest": "^21.15.0",
27 "eslint-plugin-node": "^6.0.1",
28 "eslint-plugin-promise": "^3.7.0",
29 "eslint-plugin-security": "^1.4.0",
30 "eslint-plugin-standard": "^3.0.1",
31 "fs-extra": "^5.0.0",
32 "jest": "^22.4.3",
33 "lint-staged": "^7.0.0",
34 "pre-commit": "^1.1.3",
35 "size-limit": "^0.17.0",
36 "yaspeller-ci": "^1.0.0"
37 },
38 "eslintConfig": {
39 "extends": "eslint-config-logux/browser",
40 "rules": {
41 "security/detect-unsafe-regex": "off",
42 "global-require": "off"
43 },
44 "overrides": {
45 "files": [
46 "*.test.js"
47 ],
48 "rules": {
49 "es5/no-arrow-functions": "off"
50 }
51 }
52 },
53 "jest": {
54 "testEnvironment": "node",
55 "coverageThreshold": {
56 "global": {
57 "statements": 100
58 }
59 },
60 "modulePathIgnorePatterns": [
61 "<rootDir>/test/fixtures"
62 ]
63 },
64 "size-limit": [
65 {
66 "path": "index.js",
67 "limit": "7.2 KB"
68 }
69 ],
70 "scripts": {
71 "lint-staged": "lint-staged",
72 "spellcheck": "yaspeller-ci README.md CHANGELOG.md",
73 "lint": "eslint-ci *.js test/*.js benchmark/*.js",
74 "test": "jest --coverage && yarn lint && yarn spellcheck && size-limit"
75 },
76 "lint-staged": {
77 "*.md": "yaspeller-ci",
78 "*.js": "eslint"
79 },
80 "browser": {
81 "./node.js": "./browser.js",
82 "path": false
83 },
84 "pre-commit": [
85 "lint-staged"
86 ]
87}