code-quality-lib 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +385 -0
- package/config/.prettierignore +87 -0
- package/config/.prettierrc +17 -0
- package/config/README.md +32 -0
- package/config/config.json +30 -0
- package/config/eslint.config.mjs +311 -0
- package/config/knip.json +30 -0
- package/config/tsconfig.json +28 -0
- package/index.d.ts +60 -0
- package/index.js +1503 -0
- package/package.json +67 -0
package/package.json
ADDED
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "code-quality-lib",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "A configurable code quality checker library for Node.js projects",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"types": "index.d.ts",
|
|
7
|
+
"bin": {
|
|
8
|
+
"code-quality": "index.js"
|
|
9
|
+
},
|
|
10
|
+
"scripts": {
|
|
11
|
+
"test": "node test/basic.test.js",
|
|
12
|
+
"start": "node index.js",
|
|
13
|
+
"prepublishOnly": "npm test"
|
|
14
|
+
},
|
|
15
|
+
"keywords": [
|
|
16
|
+
"code-quality",
|
|
17
|
+
"eslint",
|
|
18
|
+
"prettier",
|
|
19
|
+
"typescript",
|
|
20
|
+
"snyk",
|
|
21
|
+
"knip",
|
|
22
|
+
"quality-check"
|
|
23
|
+
],
|
|
24
|
+
"author": "NoonCore",
|
|
25
|
+
"license": "MIT",
|
|
26
|
+
"type": "commonjs",
|
|
27
|
+
"engines": {
|
|
28
|
+
"node": ">=18.0.0"
|
|
29
|
+
},
|
|
30
|
+
"dependencies": {
|
|
31
|
+
"@typescript-eslint/eslint-plugin": "^8.57.0",
|
|
32
|
+
"@typescript-eslint/parser": "^8.57.0",
|
|
33
|
+
"dotenv": "^16.6.1",
|
|
34
|
+
"eslint": "^9.39.4",
|
|
35
|
+
"eslint-config-prettier": "^9.1.2",
|
|
36
|
+
"eslint-plugin-import": "^2.32.0",
|
|
37
|
+
"eslint-plugin-prettier": "^5.5.5",
|
|
38
|
+
"eslint-plugin-react": "^7.37.5",
|
|
39
|
+
"eslint-plugin-react-hooks": "^5.2.0",
|
|
40
|
+
"eslint-plugin-react-refresh": "^0.4.26",
|
|
41
|
+
"eslint-plugin-sonarjs": "^4.0.2",
|
|
42
|
+
"eslint-plugin-storybook": "^0.11.6",
|
|
43
|
+
"eslint-plugin-unicorn": "^57.0.0",
|
|
44
|
+
"knip": "^5.43.2",
|
|
45
|
+
"prettier": "^3.8.1",
|
|
46
|
+
"typescript": "^5.9.3"
|
|
47
|
+
},
|
|
48
|
+
"devDependencies": {
|
|
49
|
+
"snyk": "^1.1303.1"
|
|
50
|
+
},
|
|
51
|
+
"files": [
|
|
52
|
+
"index.js",
|
|
53
|
+
"index.d.ts",
|
|
54
|
+
"config/",
|
|
55
|
+
".code-quality/",
|
|
56
|
+
"README.md",
|
|
57
|
+
"LICENSE"
|
|
58
|
+
],
|
|
59
|
+
"repository": {
|
|
60
|
+
"type": "git",
|
|
61
|
+
"url": "git+https://github.com/NoonCore/code-quality-lib.git"
|
|
62
|
+
},
|
|
63
|
+
"bugs": {
|
|
64
|
+
"url": "https://github.com/NoonCore/code-quality-lib/issues"
|
|
65
|
+
},
|
|
66
|
+
"homepage": "https://github.com/NoonCore/code-quality-lib#readme"
|
|
67
|
+
}
|