-
-
Notifications
You must be signed in to change notification settings - Fork 106
/
package.json
121 lines (121 loc) · 3.38 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
{
"name": "eslint-plugin-compat",
"version": "6.0.1",
"description": "Lint browser compatibility of API used",
"keywords": [
"eslint",
"browser",
"support",
"api",
"lint",
"caniuse",
"kangax"
],
"homepage": "https://github.com/amilajack/eslint-plugin-compat#readme",
"bugs": {
"url": "https://github.com/amilajack/eslint-plugin-compat/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/amilajack/eslint-plugin-compat.git"
},
"license": "MIT",
"author": "Amila Welihinda",
"contributors": [
"Amila Welihinda <[email protected]> (https://github.com/amilajack)",
"John Tran <[email protected]> (https://github.com/jooohhn)"
],
"main": "./lib/cjs/src/index.js",
"types": "./lib/cjs/src/index.d.ts",
"exports": {
".": {
"import": {
"types": "./lib/esm//src/index.d.mts",
"default": "./lib/esm/src/index.js"
},
"require": {
"types": "./lib/cjs/src/index.d.ts",
"default": "./lib/cjs/src/index.js"
}
}
},
"files": [
"lib"
],
"scripts": {
"benchmarks": "ts-node-transpile-only test/benchmarks.ts",
"build": "rm -rf lib && tsc --project tsconfig.build.json && tsc --project tsconfig.esm.json",
"lint": "eslint .",
"prettier": "prettier --check .",
"prettier:write": "prettier --write .",
"spec": "jest --testPathIgnorePatterns test/e2e-repo.spec.ts /benchmarks-tmp",
"spec:e2e": "jest --detectOpenHandles test/e2e-repo.spec.ts",
"test": "npm run build && npm run lint && npm run spec",
"tsc": "tsc",
"version": "npm run build"
},
"prettier": {
"semi": true,
"tabWidth": 2,
"trailingComma": "es5"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/benchmarks-tmp/"
]
},
"dependencies": {
"@mdn/browser-compat-data": "^5.5.35",
"ast-metadata-inferer": "^0.8.0",
"browserslist": "^4.23.1",
"caniuse-lite": "^1.0.30001639",
"find-up": "^5.0.0",
"globals": "^15.7.0",
"lodash.memoize": "^4.1.2",
"semver": "^7.6.2"
},
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/eslint-parser": "^7.24.7",
"@eslint/compat": "^1.1.0",
"@eslint/js": "^9.6.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@tsconfig/node16": "^16.1.3",
"@types/benchmark": "^2.1.5",
"@types/caniuse-lite": "^1.0.5",
"@types/eslint": "^8.56.10",
"@types/jest": "^29.5.12",
"@types/lodash.memoize": "^4.1.9",
"@types/semver": "7.5.8",
"benchmark": "^2.1.4",
"browserslist-config-erb": "^0.0.3",
"electron": "^29.x.x",
"eslint": "^9.6.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-eslint-plugin": "^6.2.0",
"eslint-plugin-prettier": "^5.1.3",
"expect-type": "^0.19.0",
"jest": "^29.7.0",
"prettier": "^3.3.2",
"semantic-release": "^22.0.12",
"simple-git": "^3.25.0",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.3",
"typescript-eslint": "^8.0.0-alpha.36"
},
"peerDependencies": {
"eslint": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0"
},
"engines": {
"node": ">=18.x"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/eslint-plugin-compat",
"logo": "https://opencollective.com/opencollective/logo.txt"
}
}