-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
39 lines (39 loc) · 1015 Bytes
/
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
{
"name": "eslint-plugin-escompat",
"version": "3.6.0",
"description": "",
"keywords": [],
"repository": {
"type": "git",
"url": "https://github.com/keithamus/eslint-plugin-escompat"
},
"homepage": "https://github.com/keithamus/eslint-plugin-escompat",
"license": "MIT",
"author": "Keith Cirkel (https://keithcirkel.co.uk/)",
"files": [
"lib/*"
],
"main": "lib/index.js",
"scripts": {
"lint": "eslint .",
"test": "npm run lint && mocha"
},
"devDependencies": {
"@babel/eslint-parser": "^7.24.7",
"@babel/plugin-proposal-do-expressions": "^7.24.7",
"@babel/plugin-proposal-function-bind": "^7.24.7",
"@babel/plugin-proposal-pipeline-operator": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@eslint/js": "^9.6.0",
"eslint": "^9.6.0",
"globals": "^15.7.0",
"mocha": "^10.5.2"
},
"peerDependencies": {
"eslint": ">=5.14.1"
},
"dependencies": {
"browserslist": "^4.23.1"
}
}