-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
97 lines (97 loc) · 3.06 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
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
{
"name": "@darraghor/eslint-plugin-nestjs-typed",
"version": "1.0.0",
"description": "Eslint rules for nestjs projects",
"scripts": {
"clean": "rm -Rf ./dist/",
"build:ci": "npm run build",
"build": "npm run clean && mkdir ./dist && tsc --project tsconfig.build.json",
"lint": "npx eslint -c .eslintrc.js --ext .ts src --no-error-on-unmatched-pattern --no-ignore",
"test": "export NODE_OPTIONS=\"--max-old-space-size=8192\" && npx jest --runInBand --colors --reporters=default --no-cache --coverage=false --silent=false -c jest.config.ts",
"pre-commit": "npx lint-staged",
"prettier": "prettier --write src/*",
"prepare": "husky",
"release": "npx semantic-release",
"semantic-release": "semantic-release"
},
"release": {
"branches": [
"main"
]
},
"publishConfig": {
"provenance": true
},
"homepage": "https://github.com/darraghoriordan/eslint-plugin-nestjs-typed",
"repository": {
"type": "git",
"url": "https://github.com/darraghoriordan/eslint-plugin-nestjs-typed"
},
"engines": {
"node": "^18.18.0 || >=20.0.0"
},
"files": [
"dist",
"package.json",
"README.md"
],
"author": {
"name": "Darragh ORiordan",
"email": "[email protected]",
"url": "https://darraghoriordan.com"
},
"main": "dist/index.js",
"types": "index.d.ts",
"dependencies": {
"@typescript-eslint/scope-manager": "8.6.0",
"@typescript-eslint/utils": "8.6.0",
"eslint-module-utils": "2.11.1",
"reflect-metadata": "0.2.2"
},
"devDependencies": {
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/exec": "6.0.3",
"@types/eslint": "9.6.1",
"@types/jest": "29.5.14",
"@types/node": "20.17.9",
"@typescript-eslint/eslint-plugin": "8.6.0",
"@typescript-eslint/parser": "8.6.0",
"@typescript-eslint/rule-tester": "8.6.0",
"class-validator": "^0.14.1",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prefer-arrow": "1.2.3",
"eslint-plugin-unicorn": "56.0.1",
"husky": "9.1.7",
"jest": "29.7.0",
"jest-create-mock-instance": "2.0.0",
"jest-junit": "16.0.0",
"lint-staged": "15.2.11",
"prettier": "3.3.3",
"semantic-release": "24.1.3",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"typescript": "5.6.3"
},
"peerDependencies": {
"@typescript-eslint/parser": "^7.0.0 || ^8.0.0",
"class-validator": "*",
"eslint": "^8.56.0"
},
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"nestjs",
"linter",
"lint",
"style"
],
"license": "ISC",
"lint-staged": {
"*.ts": "eslint --cache --fix",
"*.{ts,js,css,md}": "prettier --write"
}
}