forked from amilajack/eslint-plugin-compat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
127 lines (127 loc) · 3.4 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
117
118
119
120
121
122
123
124
125
126
127
{
"name": "eslint-plugin-compat",
"version": "4.0.2",
"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": "npm run lint && npm run build && npm run spec",
"tsc": "tsc",
"version": "npm run build"
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/benchmarks-tmp/"
]
},
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-typescript": "^7.15.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/benchmark": "^2.1.1",
"@types/browserslist": "^4.15.0",
"@types/caniuse-lite": "^1.0.1",
"@types/eslint": "^7.28.0",
"@types/jest": "^27.0.1",
"@types/lodash.memoize": "^4.1.6",
"@types/semver": "^7.3.8",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"benchmark": "^2.1.4",
"browserslist-config-erb": "^0.0.1",
"electron": "^13.x.x",
"eslint": "^7.32.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-bliss": "^5.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-eslint-plugin": "^4.0.1",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"semantic-release": "^17.4.5",
"simple-git": "^2.44.0",
"ts-node": "^10.2.1",
"typescript": "^4.3.5"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": true
},
"dependencies": {
"@mdn/browser-compat-data": "^4.1.5",
"ast-metadata-inferer": "^0.7.0",
"browserslist": "^4.16.8",
"caniuse-lite": "^1.0.30001304",
"core-js": "^3.16.2",
"find-up": "^5.0.0",
"lodash.memoize": "4.1.2",
"semver": "7.3.5"
},
"peerDependencies": {
"eslint": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.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"
]
}
}