-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 2.21 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
{
"name": "@refyne/eslint-plugin",
"version": "0.1.0",
"description": "Refyne recommended custom eslint plugin",
"engines": {
"node": ">=18.10.0"
},
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"prepare": "husky install",
"clean": "rimraf dist",
"prebuild": "yarn run clean",
"build": "tsup src/index.ts --no-splitting --minify",
"lint": "run-s lint:ts lint:eslint lint:prettier",
"lint:ts": "tsc --noEmit",
"lint:eslint": "eslint '**/*.{js,ts}'",
"lint:prettier": "prettier '**/*.{js,ts,json,yaml,md}'",
"fix": "run-s fix:eslint fix:prettier",
"fix:eslint": "yarn run lint:eslint --fix",
"fix:prettier": "yarn run lint:prettier --write",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"release": "semantic-release",
"prepublishOnly": "yarn run build"
},
"peerDependencies": {
"eslint": ">=5.16.0"
},
"devDependencies": {
"@types/eslint": "^9.6.0",
"@types/jest": "^29.4.2",
"@types/lodash": "^4.17.7",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^9.8.0",
"husky": "^9.1.4",
"jest": "^29.5.0",
"lint-staged": "^15.2.7",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"rimraf": "^4.4.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"tsup": "^6.6.3",
"typescript": "^4.2.3"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix",
"prettier --write"
],
"*.{json,yaml,md}": [
"prettier --write"
]
},
"keywords": [
"typescript",
"eslint",
"eslintplugin",
"eslint-plugin",
"nestjs",
"mongoose"
],
"author": "Refyne",
"license": "MIT",
"dependencies": {
"lodash": "^4.17.21"
},
"repository": "github:refyne/eslint-plugin",
"bugs": {
"url": "https://github.com/refyne/eslint-plugin/issues"
},
"homepage": "https://github.com/refyne/eslint-plugin#readme"
}