-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.09 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.09 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "eol-rules",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/badrap/eol-rules.git"
},
"license": "MIT",
"scripts": {
"lint": "eslint --ignore-path .gitignore --max-warnings 0 --ext=.js,.ts .",
"typecheck": "tsc --skipLibCheck --noEmit",
"validate": "ts-node --transpile-only scripts/validate.ts",
"collect": "ts-node --transpile-only scripts/collect.ts",
"try:banner": "ts-node --transpile-only scripts/try-banner.ts",
"try:shodan": "ts-node --transpile-only scripts/try-shodan.ts"
},
"devDependencies": {
"@types/node": "^20.11.16",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"kleur": "^4.1.5",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"yaml": "^2.3.4"
},
"eslintConfig": {
"root": true,
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module",
"project": true
},
"extends": [
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended"
],
"rules": {
"prettier/prettier": "warn",
"linebreak-style": [
"error",
"unix"
],
"no-console": "error",
"eqeqeq": [
"error",
"smart"
],
"@typescript-eslint/no-for-in-array": [
"error"
],
"@typescript-eslint/explicit-member-accessibility": [
"error",
{
"accessibility": "no-public"
}
],
"@typescript-eslint/explicit-module-boundary-types": "error",
"@typescript-eslint/no-unused-vars": [
"error",
{
"varsIgnorePattern": "^_",
"argsIgnorePattern": "^_",
"caughtErrorsIgnorePattern": "^_"
}
],
"@typescript-eslint/no-namespace": [
"error",
{
"allowDeclarations": true
}
]
}
}
}