forked from amilajack/eslint-plugin-compat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 3.08 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
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
{
"name": "eslint-plugin-compat",
"version": "3.8.0",
"description": "Lint browser compatibility of API used",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/amilajack/eslint-plugin-compat.git"
},
"keywords": [
"eslint",
"browser",
"support",
"api",
"lint",
"caniuse",
"kangax"
],
"author": "Amila Welihinda",
"contributors": [
"Amila Welihinda <[email protected]> (https://github.com/amilajack)",
"John Tran <[email protected]> (https://github.com/jooohhn)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/amilajack/eslint-plugin-compat/issues"
},
"files": [
"lib"
],
"homepage": "https://github.com/amilajack/eslint-plugin-compat#readme",
"scripts": {
"benchmarks": "ts-node-transpile-only test/benchmarks.ts",
"build": "rm -rf lib && babel src --out-dir lib --source-maps inline --extensions '.ts'",
"lint": "eslint --ignore-path .gitignore --ext .js,.ts .",
"spec": "jest --testPathIgnorePatterns test/e2e-repo.spec.ts /benchmarks-tmp",
"spec:e2e": "jest test/e2e-repo.spec.ts",
"test": "yarn lint && yarn build && yarn spec",
"tsc": "tsc",
"version": "yarn build"
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/benchmarks-tmp/"
]
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.0",
"@babel/preset-env": "^7.11.0",
"@babel/preset-typescript": "^7.10.4",
"@types/benchmark": "^1.0.33",
"@types/browserslist": "^4.8.0",
"@types/eslint": "^7.2.0",
"@types/jest": "^26.0.8",
"@types/lodash.memoize": "^4.1.6",
"@types/semver": "^7.3.1",
"@typescript-eslint/eslint-plugin": "^3.5.0",
"@typescript-eslint/parser": "^3.5.0",
"benchmark": "^2.1.4",
"browserslist-config-erb": "^0.0.1",
"electron": "^9.0.5",
"eslint": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0",
"eslint-config-airbnb-typescript": "^8.0.2",
"eslint-config-bliss": "^5.0.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.1.0",
"prettier": "^2.0.5",
"simple-git": "^2.11.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.5"
},
"dependencies": {
"ast-metadata-inferer": "^0.4.0",
"browserslist": "^4.12.2",
"caniuse-db": "^1.0.30001109",
"core-js": "^3.6.5",
"find-up": "^4.1.0",
"lodash.memoize": "4.1.2",
"mdn-browser-compat-data": "^1.0.28",
"semver": "7.3.2"
},
"peerDependencies": {
"eslint": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0"
},
"engines": {
"node": ">=9.x"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/eslint-plugin-compat",
"logo": "https://opencollective.com/opencollective/logo.txt"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"useBuiltIns": "usage",
"corejs": 3,
"targets": {
"node": 10
}
}
],
"@babel/preset-typescript"
]
},
"renovate": {
"extends": [
"bliss"
]
}
}