@neurodevs/eslint-config-ndx 0.0.1 → 0.0.2
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/package.json +12 -17
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@neurodevs/eslint-config-ndx",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.2",
|
|
4
4
|
"description": "ESLint flat-config preset for modern Node.js + TypeScript projects",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"nodejs",
|
|
@@ -20,10 +20,9 @@
|
|
|
20
20
|
},
|
|
21
21
|
"main": "build/index.js",
|
|
22
22
|
"scripts": {
|
|
23
|
-
"build.ci": "yarn run build.tsc && yarn run
|
|
24
|
-
"build.dev": "yarn run build.tsc --sourceMap ; yarn run
|
|
23
|
+
"build.ci": "yarn run build.tsc && yarn run lint",
|
|
24
|
+
"build.dev": "yarn run build.tsc --sourceMap ; yarn run lint",
|
|
25
25
|
"build.copy-files": "mkdir -p build && rsync -avzq --exclude='*.ts' ./src/ ./build/",
|
|
26
|
-
"build.resolve-paths": "resolve-path-aliases --target build --patterns '**/*.js,**/*.d.ts'",
|
|
27
26
|
"build.tsc": "yarn run build.copy-files && tsc",
|
|
28
27
|
"clean": "yarn run clean.build",
|
|
29
28
|
"clean.all": "yarn run clean.dependencies && yarn run clean.build",
|
|
@@ -32,31 +31,27 @@
|
|
|
32
31
|
"fix.lint": "eslint --fix --cache '**/*.ts'",
|
|
33
32
|
"lint": "eslint --cache '**/*.ts'",
|
|
34
33
|
"lint.tsc": "tsc -p . --noEmit",
|
|
35
|
-
"post.watch.build": "yarn run build.copy-files
|
|
34
|
+
"post.watch.build": "yarn run build.copy-files",
|
|
36
35
|
"rebuild": "yarn run clean.all && yarn install && yarn run build.dev",
|
|
37
36
|
"update.dependencies": "yarn run clean.dependencies && yarn",
|
|
38
|
-
"resolve-paths.lint": "yarn run build.resolve-paths ; yarn run lint",
|
|
39
37
|
"test": "jest",
|
|
40
38
|
"watch.build.dev": "tsc-watch --sourceMap --onCompilationComplete 'yarn run post.watch.build'",
|
|
41
39
|
"watch.rebuild": "yarn run clean.all && yarn install && yarn run watch.build.dev",
|
|
42
40
|
"watch.tsc": "tsc -w"
|
|
43
41
|
},
|
|
44
|
-
"dependencies": {
|
|
45
|
-
"devDependencies": {
|
|
46
|
-
"@sprucelabs/jest-json-reporter": "^10.0.25",
|
|
47
|
-
"@sprucelabs/resolve-path-aliases": "^4.0.17",
|
|
48
|
-
"@sprucelabs/test": "^11.1.4",
|
|
49
|
-
"@sprucelabs/test-utils": "^7.2.12",
|
|
50
|
-
"@types/node": "^25.3.0",
|
|
42
|
+
"dependencies": {
|
|
51
43
|
"@typescript-eslint/eslint-plugin": "^8.56.0",
|
|
52
44
|
"@typescript-eslint/parser": "^8.56.0",
|
|
53
|
-
"chokidar-cli": "^3.0.0",
|
|
54
|
-
"concurrently": "^9.2.1",
|
|
55
45
|
"eslint": "^9.39.2",
|
|
56
46
|
"eslint-config-prettier": "^10.1.8",
|
|
57
|
-
"eslint-plugin-flowtype": "^8.0.3",
|
|
58
47
|
"eslint-plugin-import": "^2.32.0",
|
|
59
|
-
"eslint-plugin-react": "^7.37.5"
|
|
48
|
+
"eslint-plugin-react": "^7.37.5"
|
|
49
|
+
},
|
|
50
|
+
"devDependencies": {
|
|
51
|
+
"@neurodevs/node-tdd": "^0.2.5",
|
|
52
|
+
"@types/node": "^25.3.0",
|
|
53
|
+
"chokidar-cli": "^3.0.0",
|
|
54
|
+
"concurrently": "^9.2.1",
|
|
60
55
|
"jest": "^30.2.0",
|
|
61
56
|
"jest-circus": "^30.2.0",
|
|
62
57
|
"prettier": "^3.8.1",
|