-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 895 Bytes
/
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
{
"name": "eslint-plugin-lotmek",
"version": "0.0.1",
"description": "Custom ESLint plugin",
"main": "dist/index.js",
"scripts": {
"build": "tsup src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lotmek/eslint-plugin-lotmek.git"
},
"keywords": [
"eslint"
],
"author": "Lotfi Meklati",
"license": "ISC",
"bugs": {
"url": "https://github.com/lotmek/eslint-plugin-lotmek/issues"
},
"homepage": "https://github.com/lotmek/eslint-plugin-lotmek#readme",
"dependencies": {
"eslint": "^9.11.0",
"typescript-eslint": "^8.6.0"
},
"devDependencies": {
"@types/eslint": "^9.6.1",
"@types/node": "^22.5.5",
"@typescript-eslint/rule-tester": "^8.6.0",
"eslint-doc-generator": "^1.7.1",
"tsup": "^8.3.0",
"typescript": "^5.6.2"
}
}