-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 3.1 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@checkdigit/eslint-plugin",
"version": "7.9.0",
"description": "Check Digit eslint plugins",
"keywords": [
"eslint",
"eslintplugin"
],
"homepage": "https://github.com/checkdigit/eslint-plugin#readme",
"bugs": {
"url": "https://github.com/checkdigit/eslint-plugin/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/checkdigit/eslint-plugin"
},
"license": "MIT",
"author": "Check Digit, LLC",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./dist-types/index.d.ts",
"import": "./dist-mjs/index.mjs",
"default": "./dist-mjs/index.mjs"
}
},
"files": [
"src",
"dist-types",
"dist-mjs",
"!src/**/test/**",
"!src/**/*.test.ts",
"!src/**/*.spec.ts",
"!dist-types/**/test/**",
"!dist-types/**/*.test.d.ts",
"!dist-types/**/*.spec.d.ts",
"!dist-mjs/**/test/**",
"!dist-mjs/**/*.test.mjs",
"!dist-mjs/**/*.spec.mjs",
"SECURITY.md"
],
"scripts": {
"build:dist-mjs": "rimraf dist-mjs && npx builder --type=module --sourceMap --outDir=dist-mjs && node dist-mjs/index.mjs",
"build:dist-types": "rimraf dist-types && npx builder --type=types --outDir=dist-types",
"ci:compile": "tsc --noEmit",
"ci:coverage": "NODE_OPTIONS=\"--disable-warning ExperimentalWarning --experimental-vm-modules\" jest --coverage=true",
"ci:lint": "npm run lint",
"ci:style": "npm run prettier",
"ci:test": "NODE_OPTIONS=\"--disable-warning ExperimentalWarning --experimental-vm-modules\" jest --coverage=false",
"lint": "eslint --max-warnings 0 .",
"lint:fix": "eslint --max-warnings 0 --fix .",
"prepare": "",
"prepublishOnly": "npm run build:dist-types && npm run build:dist-mjs",
"prettier": "prettier --ignore-path .gitignore --list-different .",
"prettier:fix": "prettier --ignore-path .gitignore --write .",
"test": "npm run ci:compile && npm run ci:test && npm run ci:lint && npm run ci:style"
},
"prettier": "@checkdigit/prettier-config",
"jest": {
"preset": "@checkdigit/jest-config"
},
"dependencies": {
"@typescript-eslint/type-utils": "^8.18.1",
"@typescript-eslint/utils": "^8.18.1",
"ts-api-utils": "^2.0.0"
},
"devDependencies": {
"@checkdigit/jest-config": "^6.0.2",
"@checkdigit/prettier-config": "^6.0.0",
"@checkdigit/typescript-config": "^9.0.0",
"@eslint/js": "^9.17.0",
"@types/eslint": "^9.6.1",
"@types/eslint-config-prettier": "^6.11.3",
"@typescript-eslint/parser": "^8.18.1",
"@typescript-eslint/rule-tester": "^8.18.1",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-eslint-plugin": "^6.3.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-no-only-tests": "^3.3.0",
"eslint-plugin-no-secrets": "^2.1.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-sonarjs": "1.0.4",
"http-status-codes": "^2.3.0",
"rimraf": "^6.0.1",
"typescript-eslint": "^8.18.1"
},
"peerDependencies": {
"eslint": ">=9 <10"
},
"engines": {
"node": ">=20.17"
}
}