-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.19 KB
/
package.json
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
{
"name": "eslint-plugin-nestjs-orm",
"version": "0.2.5",
"description": "Guardrails to prevent bad practices or do some serious mistakes when using NestJS Moongose or ORMs.",
"keywords": ["eslint", "eslintplugin", "eslint-plugin", "nestjs", "mongoose"],
"homepage": "https://github.com/aashutoshrathi/eslint-plugin-nestjs-orm",
"author": "aashutoshrathi",
"types": "./build/index.d.ts",
"main": "./build/index.js",
"exports": "./build/index.js",
"scripts": {
"build": "tsc -b",
"test:watch": "vitest",
"test": "vitest run"
},
"files": ["build", "!**/*.map", "!build/tests/*", "README.md"],
"repository": {
"type": "git",
"url": "git+https://github.com/aashutoshrathi/eslint-plugin-nestjs-orm.git"
},
"bugs": {
"url": "https://github.com/aashutoshrathi/eslint-plugin-nestjs-orm/issues"
},
"devDependencies": {
"@typescript-eslint/utils": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"@typescript-eslint/rule-tester": "^6.1.0",
"eslint": "^8.45.0",
"typescript": "^5.1.6",
"vitest": "^0.33.0"
},
"engines": {
"node": "^14.17.0 || ^16.0.0 || >= 18.0.0"
},
"peerDependencies": {
"eslint": ">=7"
},
"license": "ISC"
}