-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.65 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.65 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
{
"name": "seekingalpha-javascript-style",
"version": "9.114.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": "9.39.2",
"eslint-config-seekingalpha-base": "11.62.0",
"eslint-config-seekingalpha-node": "10.0.0",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-n": "18.0.1",
"eslint-plugin-unicorn": "64.0.0",
"husky": "9.1.7",
"lint-staged": "17.0.7",
"oxfmt": "0.53.0",
"oxlint": "1.68.0"
}
}