-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 2.17 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
{
"name": "@cloudfour/eslint-plugin",
"version": "23.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": "./index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/cloudfour/eslint-config.git"
},
"contributors": [
"Erik Jung <[email protected]>",
"Caleb Eby <[email protected]>"
],
"files": [
"dist/config.js",
"src/rules.js",
"index.js",
"src/rules/**/*.js",
"!src/rules/**/*.test.js"
],
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"eslint",
"eslintconfig"
],
"dependencies": {
"@babel/core": "^7.23.6",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsdoc": "^46.8.2",
"eslint-plugin-n": "^16.2.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-unicorn": "^48.0.1"
},
"peerDependencies": {
"eslint": "^8.0.0"
},
"devDependencies": {
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.1",
"@changesets/write": "0.3.0",
"eliminate": "1.1.2",
"eslint": "8.51.0",
"eslint-config-prettier": "9.0.0",
"eslint-config-standard": "17.1.0",
"eslint-config-xo": "0.43.1",
"eslint-formatter-pretty": "5.0.0",
"kleur": "4.1.5",
"mkdirplz": "1.0.2",
"powerwalker": "0.1.2",
"prettier": "3.0.3",
"prompts": "2.4.2",
"typescript": "5.3.3"
},
"scripts": {
"check-lint": "eslint --format=pretty --ext=.js,.mjs,.cjs . && prettier --check .",
"load-fixture-repo": "node fixtures/load-repo",
"lint": "eslint --format=pretty --ext=.js,.mjs,.cjs --fix . && prettier --write .",
"build": "node build.mjs",
"changeset": "changeset",
"version": "changeset version && prettier --write .",
"release": "npm run build && changeset publish"
},
"prettier": {
"singleQuote": true
},
"eslintConfig": {
"extends": "plugin:@cloudfour/recommended"
}
}