-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.31 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
{
"name": "@cloudfour/eslint-config",
"version": "24.0.0",
"description": "Cloud Four's shareable ESLint configuration",
"author": "Cloud Four <[email protected]> (http://cloudfour.com)",
"homepage": "https://github.com/cloudfour/eslint-config",
"bugs": "https://github.com/cloudfour/eslint-config/issues",
"license": "MIT",
"main": "./eslint.config.js",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/cloudfour/eslint-config.git"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"eslint",
"eslintconfig"
],
"peerDependencies": {
"eslint": ">= 9"
},
"devDependencies": {
"eslint": "9.14.0",
"prettier": "3.3.3"
},
"scripts": {
"lint": "npm run lint:js && npm run lint:prettier",
"lint:check": "npm run lint:js:check && npm run lint:prettier:check",
"lint:js": "eslint --fix .",
"lint:js:check": "eslint .",
"lint:prettier": "prettier --write .",
"lint:prettier:check": "prettier --check ."
},
"prettier": {
"singleQuote": true
},
"dependencies": {
"eslint-config-prettier": "9.1.0",
"eslint-config-xo": "0.46.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsdoc": "50.5.0",
"eslint-plugin-n": "17.13.1",
"eslint-plugin-promise": "7.1.0",
"eslint-plugin-unicorn": "56.0.0",
"globals": "15.12.0",
"typescript-eslint": "8.14.0"
}
}