-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.43 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
{
"name": "@codeyourfuture/eslint-config-standard",
"version": "6.0.1",
"description": "A standard ESLint configuration for all CYF examples/projects.",
"private": false,
"publishConfig": {
"access": "public"
},
"type": "commonjs",
"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 <mail@jonrshar.pe>",
"contributors": [
"Aichi Chang <aichi.p.chang@gmail.com>"
],
"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": {
"@tsconfig/node18": "^18.2.4",
"@types/eslint": "^9.6.1",
"del-cli": "^6.0.0",
"eslint": "^9.18.0",
"typescript": "^5.7.3"
},
"peerDependencies": {
"eslint": "^8.45 || ^9"
},
"engines": {
"node": "^18.18 || ^20.9 || >=22"
},
"dependencies": {
"@eslint/js": "^9.18.0",
"@stylistic/eslint-plugin": "^2.13.0"
}
}