-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.73 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.73 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
82
83
84
85
86
87
88
89
90
91
{
"name": "@shi-corp/development-utilities",
"version": "2.2.0",
"description": "Collection of configurations, settings and packages to be common across multiple products/repositories.",
"main": "bin/index.js",
"type": "module",
"scripts": {
"build:Dev": "tsc",
"prebuild:Prod": "tsc -p prod.tsconfig.json --emitDeclarationOnly false",
"build:Prod": "tsc -p prod.tsconfig.json --removeComments false",
"lint": "eslint --max-warnings 0",
"test:Unit": "mocha"
},
"exports": {
".": {
"import": "./bin/src/index.js"
},
"./optimized/lint/*.js": {
"import": "./bin/config/linter/*.js"
},
"./config/typescript/*.json": "./config/typescript/*.json"
},
"packageManager": "npm@11.10.0",
"devEngines": {
"runtime": {
"name": "node",
"version": ">=24.13.0",
"onFail": "error"
},
"packageManager": {
"name": "npm",
"onFail": "error"
}
},
"engines": {
"node": ">=24.11.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Software-Hardware-Integration-Lab/Development-Utilities"
},
"keywords": [
"ESLint",
"config",
"lint",
"standardization",
"JSDoc",
"Stylistic",
"TypeScript",
"tsconfig",
"Next.js config"
],
"author": "Pasha Zayko <pasha_zayko@shi.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Software-Hardware-Integration-Lab/Development-Utilities/issues"
},
"homepage": "https://github.com/Software-Hardware-Integration-Lab/Development-Utilities#readme",
"dependencies": {
"@eslint/js": "~9.39.2",
"@stylistic/eslint-plugin": "~5.8.0",
"eslint": "~9.39.2",
"eslint-config-next": "~16.1.6",
"eslint-plugin-jsdoc": "~62.6.0",
"eslint-plugin-react": "~7.37.5",
"eslint-plugin-react-hooks": "~7.0.1",
"typescript-eslint": "~8.56.0"
},
"devDependencies": {
"@types/chai": "~5.2.3",
"@types/eslint": "~9.6.1",
"@types/mocha": "~10.0.10",
"chai": "~6.2.2",
"mocha": "~11.7.5",
"next": "~16.1.6",
"typescript": "~5.9.3"
},
"overrides": {
"is-unicode-supported": "npm:@socketregistry/is-unicode-supported@^1",
"safe-buffer": "npm:@socketregistry/safe-buffer@^1"
},
"resolutions": {
"is-unicode-supported": "npm:@socketregistry/is-unicode-supported@^1",
"safe-buffer": "npm:@socketregistry/safe-buffer@^1"
},
"mocha": {
"recursive": true,
"spec": "bin/test/",
"color": true
}
}