-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.5 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.5 KB
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
{
"name": "@codeyourfuture/eslint-config-standard",
"version": "8.1.1",
"description": "A standard ESLint configuration for all CYF examples/projects.",
"private": false,
"publishConfig": {
"access": "public"
},
"type": "module",
"files": [
"*.d.ts",
"*.js",
"!eslint.root.js"
],
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"lint": "eslint --config eslint.root.js *.js",
"test:examples": "./bin/examples.sh",
"test:install": "./bin/test.sh",
"pretypes": "del *.d.ts",
"types": "tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/CodeYourFuture/eslint-config-standard"
},
"keywords": [
"eslint"
],
"author": "Jonathan Sharpe <[email protected]>",
"contributors": [
"Aichi Chang <[email protected]>"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/CodeYourFuture/eslint-config-standard/issues"
},
"homepage": "https://github.com/CodeYourFuture/eslint-config-standard#readme",
"funding": "https://github.com/sponsors/CodeYourFuture",
"devDependencies": {
"@eslint/js": "^9.39.2",
"@tsconfig/node20": "^20.1.9",
"@types/eslint": "^9.6.1",
"@types/node": "^20.19.33",
"del-cli": "^7.0.0",
"eslint": "^9.39.2",
"globals": "^17.3.0",
"typescript": "^5.9.3"
},
"peerDependencies": {
"@eslint/js": ">=9",
"eslint": "^9 || ^10"
},
"engines": {
"node": "^20.9 || >=22"
},
"dependencies": {
"@stylistic/eslint-plugin": "^5.8.0"
}
}