-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.92 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
{
"name": "@checkdigit/eslint-config",
"version": "11.2.1",
"private": false,
"description": "Check Digit standard eslint configuration",
"keywords": [
"eslint",
"typescript"
],
"homepage": "https://github.com/checkdigit/eslint-config#readme",
"bugs": {
"url": "https://github.com/checkdigit/eslint-config/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/checkdigit/eslint-config.git"
},
"license": "MIT",
"author": "Check Digit, LLC",
"main": "index.mjs",
"files": [
"index.mjs"
],
"scripts": {
"ci:compile": "tsc --noEmit",
"ci:lint": "npm run lint",
"ci:style": "npm run prettier",
"ci:test": "npm run ci:compile && npm run ci:lint && npm run ci:style",
"lint": "eslint --max-warnings 0 .",
"lint:fix": "eslint --max-warnings 0 --fix .",
"prepare": "",
"prettier": "prettier --ignore-path .gitignore --list-different .",
"prettier:fix": "prettier --ignore-path .gitignore --write .",
"test": "npm run ci:test"
},
"prettier": "@checkdigit/prettier-config",
"devDependencies": {
"@checkdigit/prettier-config": "^6.3.0",
"@checkdigit/typescript-config": "^9.1.0",
"fclone": "^1.0.11"
},
"peerDependencies": {
"@checkdigit/eslint-plugin": "7.12.0",
"@eslint/compat": "1.2.7",
"@eslint/eslintrc": "3.3.0",
"@eslint/js": "9.22.0",
"@eslint/json": "0.10.0",
"@eslint/markdown": "6.3.0",
"eslint": "9.22.0",
"eslint-config-prettier": "10.1.1",
"eslint-import-resolver-typescript": "3.8.4",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-n": "17.16.2",
"eslint-plugin-no-only-tests": "3.3.0",
"eslint-plugin-no-secrets": "2.2.1",
"eslint-plugin-sonarjs": "3.0.2",
"eslint-plugin-unicorn": "57.0.0",
"eslint-plugin-yml": "1.17.0",
"typescript-eslint": "8.26.1"
},
"engines": {
"node": ">=22.11"
}
}