-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.59 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
98
{
"name": "@tsed/eslint-plugin",
"version": "1.1.11",
"description": "Eslint rules for Ts.ED projects",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"clean": "rimraf ./dist/",
"build:ci": "yarn build",
"build": "yarn clean && mkdir ./dist && tsc --project tsconfig.build.json",
"lint": "eslint -c .eslintrc.js --ext .ts src --no-error-on-unmatched-pattern --no-ignore",
"test": "jest --reporters=default --no-cache --coverage",
"prettier": "prettier --write src/*",
"prepare": "is-ci || husky",
"release": "semantic-release",
"release:dryRun": "semantic-release --dry-run"
},
"homepage": "https://github.com/tsedio/eslint-plugin-tsed",
"repository": {
"type": "git",
"url": "git+https://github.com/tsedio/eslint-plugin-tsed.git"
},
"files": [
"dist",
"package.json",
"README.md"
],
"author": {
"name": "Romain Lenzotti",
"url": "https://github.com/romakita"
},
"dependencies": {
"@typescript-eslint/utils": "7.2.0",
"eslint-module-utils": "2.8.1",
"reflect-metadata": "0.2.1"
},
"devDependencies": {
"@commitlint/cli": "19.2.1",
"@commitlint/config-conventional": "19.1.0",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/exec": "6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/eslint": "8.56.6",
"@types/is-ci": "^3",
"@types/jest": "29.5.12",
"@types/node": "20.11.30",
"@typescript-eslint/eslint-plugin": "7.2.0",
"@typescript-eslint/parser": "7.2.0",
"@typescript-eslint/rule-tester": "7.2.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"husky": "9.0.11",
"is-ci": "^3.0.1",
"jest": "29.7.0",
"jest-create-mock-instance": "2.0.0",
"jest-junit": "16.0.0",
"lint-staged": "15.2.2",
"prettier": "3.2.5",
"rimraf": "^5.0.5",
"semantic-release": "^23.0.6",
"semantic-release-slack-bot": "^4.0.2",
"ts-jest": "29.1.2",
"ts-node": "10.9.2",
"typescript": "5.4.3"
},
"peerDependencies": {
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.56.0"
},
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"tsed",
"linter",
"lint",
"style"
],
"license": "ISC",
"lint-staged": {
"packages/**/*.{ts,tsx,js,jsx}": [
"eslint --fix",
"prettier --write"
],
"**/*.{css,json,md,yml,yaml}": "prettier --write"
},
"packageManager": "[email protected]",
"publishConfig": {
"access": "public",
"tag": "latest"
}
}