-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.7 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
{
"name": "seekingalpha-javascript-style",
"version": "10.3.0",
"description": "Set of linting rules, guides and best practices for best Javascript code",
"main": "index.js",
"type": "module",
"engines": {
"node": ">= 24"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"oxlint": "oxlint --no-error-on-unmatched-pattern --report-unused-disable-directives",
"lint": "oxlint && TIMING=1 eslint .",
"prepare": "node .husky/install.js",
"oxfmt:check": "oxfmt --check --no-error-on-unmatched-pattern",
"oxfmt:write": "oxfmt --write --no-error-on-unmatched-pattern"
},
"repository": {
"type": "git",
"url": "git+https://github.com/seekingalpha/javascript.git"
},
"keywords": [
"javascript",
"eslint",
"style",
"guide",
"seekingalpha",
"lint",
"es6",
"lint",
"rules",
"code",
"style"
],
"author": "Aleksey Kovalevsky",
"license": "MIT",
"bugs": {
"url": "https://github.com/seekingalpha/javascript/issues"
},
"homepage": "https://github.com/seekingalpha/javascript#readme",
"lint-staged": {
"*.{yml,yaml,md,mdx,html,json}": "oxfmt --write --no-error-on-unmatched-pattern",
"*.js": [
"oxfmt --write --no-error-on-unmatched-pattern",
"oxlint",
"eslint"
]
},
"devDependencies": {
"eslint": "10.8.0",
"eslint-config-seekingalpha-base": "12.3.0",
"eslint-config-seekingalpha-node": "11.2.0",
"eslint-plugin-import-x": "4.17.1",
"eslint-plugin-n": "18.2.2",
"eslint-plugin-unicorn": "72.0.0",
"husky": "9.1.7",
"lint-staged": "17.2.0",
"oxfmt": "0.60.0",
"oxlint": "1.75.0"
},
"allowScripts": {
"unrs-resolver@1.12.2": true
}
}