-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 2.74 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 2.74 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "eslint-plugin-nestjs-route",
"version": "0.1.2",
"description": "ESLint rules for NestJS route management - ensure proper route ordering and prevent duplicates.",
"main": "lib/src/index.js",
"types": "lib/src/index.d.ts",
"files": [
"lib",
"README.md",
"README.ko.md",
"SECURITY.md",
".eslintrc.example.js"
],
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"nestjs",
"nest",
"route",
"routing",
"controller",
"decorator",
"typescript",
"static-route",
"parameterized-route",
"route-order",
"route-duplicates",
"best-practices"
],
"author": {
"name": "shine-jung",
"url": "https://github.com/shine-jung"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/shine-jung/eslint-plugin-nestjs-route.git"
},
"bugs": {
"url": "https://github.com/shine-jung/eslint-plugin-nestjs-route/issues"
},
"homepage": "https://shine-jung.github.io/eslint-plugin-nestjs-route/",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/shine-jung"
},
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"eslint": ">=7"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.29.0",
"@types/eslint": "^9.6.1",
"@types/jest": "^30.0.0",
"@typescript-eslint/eslint-plugin": "^8.34.1",
"@typescript-eslint/parser": "^8.34.1",
"eslint": "^9.29.0",
"jest": "^30.0.1",
"semantic-release": "^25.0.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"ts-jest": "^29.4.0",
"typescript": "^5.7.2"
},
"scripts": {
"build": "tsc",
"clean": "rm -rf lib",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"type-check": "tsc --noEmit",
"prepublishOnly": "npm run clean && npm run build && npm test",
"prepare": "npm run build",
"semantic-release": "semantic-release",
"docs:serve": "cd docs && python3 -m http.server 8080",
"docs:dev": "cd docs && python3 -m http.server 3000"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/",
"/lib/"
],
"collectCoverageFrom": [
"src/**/*.ts",
"!src/**/*.d.ts",
"!src/index.ts"
],
"coverageDirectory": "coverage",
"coverageReporters": [
"text",
"lcov",
"html"
],
"coverageThreshold": {
"global": {
"branches": 75,
"functions": 90,
"lines": 85,
"statements": 85
}
}
}
}