-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.26 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
{
"name": "@trilon/eslint-plugin",
"version": "0.2.1",
"description": "Official Trilon Eslint Plugin",
"type": "commonjs",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib/**/*",
"package.json",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=16.*.*"
},
"scripts": {
"prepare": "npm run tsc",
"tsc": "rimraf ./lib && tsc -p tsconfig.build.json && tsc-alias",
"test": "tsx --import ./tests/global.setup.js --test tests/**/*.spec.ts",
"format": "prettier --write .",
"lint": "eslint . --ext .ts --max-warnings 0"
},
"keywords": [
"eslint",
"eslintplugin",
"nestjs",
"nest",
"trilon"
],
"author": "Trilon Team",
"license": "ISC",
"packageManager": "[email protected]",
"devDependencies": {
"@types/eslint": "^8",
"@types/node": "^20.10.7",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"@typescript-eslint/rule-tester": "^6.13.1",
"@typescript-eslint/utils": "^6.13.1",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"prettier": "^3.1.0",
"rimraf": "^5.0.5",
"tsc-alias": "^1.8.8",
"tsx": "^4.6.2",
"typescript": "^5.3.2"
},
"peerDependencies": {
"eslint": ">=8.0.0"
}
}