-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
59 lines (59 loc) · 1.61 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
{
"name": "eslint-plugin-depend",
"version": "0.0.0-dev",
"description": "An ESLint plugin to suggest optimized dependencies, native alternatives and more",
"main": "lib/main.js",
"files": [
"lib",
"!lib/test"
],
"scripts": {
"clean:build": "premove lib",
"clean:test": "premove coverage",
"build:js": "npm run clean:build && tsc",
"build": "npm run lint && npm run build:js",
"lint": "eslint src",
"format": "prettier --write src",
"test": "npm run build:js && npm run clean:test && c8 node --test",
"prepublishOnly": "npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/es-tooling/eslint-plugin-depend.git"
},
"keywords": [
"eslint",
"optimize",
"optimise",
"clutter",
"cleanup",
"package"
],
"author": "James Garbutt (https://github.com/43081j)",
"license": "MIT",
"bugs": {
"url": "https://github.com/es-tooling/eslint-plugin-depend/issues"
},
"homepage": "https://github.com/es-tooling/eslint-plugin-depend#readme",
"devDependencies": {
"@eslint/js": "^9.9.0",
"@types/eslint": "^9.6.0",
"@types/estree": "^1.0.5",
"@types/node": "^22.2.0",
"@types/semver": "^7.5.8",
"@typescript-eslint/typescript-estree": "^8.0.1",
"c8": "^10.1.2",
"eslint": "^9.9.0",
"eslint-plugin-eslint-plugin": "^6.2.0",
"jsonc-eslint-parser": "^2.4.0",
"premove": "^4.0.0",
"prettier": "^3.3.3",
"typescript": "^5.5.4",
"typescript-eslint": "^8.0.1"
},
"dependencies": {
"fd-package-json": "^1.2.0",
"module-replacements": "^2.1.0",
"semver": "^7.6.3"
}
}