-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
48 lines (48 loc) · 1.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
{
"name": "eslint-plugin-import-helpers",
"version": "2.0.1",
"description": "ESLint Rules to Aid with Imports",
"main": "lib/index.js",
"scripts": {
"build": "gulp src",
"lint": "npm run lint:js",
"lint:js": "eslint --cache .",
"prepublish": "npm run build",
"test": "npm run build && npm run test-quick",
"test-quick": "cross-env NODE_PATH=./lib nyc -s mocha -R dot --recursive test -t test-results"
},
"keywords": [
"eslint",
"eslint-plugin",
"eslintplugin",
"import",
"eslint-plugin-import",
"configurable"
],
"repository": {
"url": "https://github.com/Tibfib/eslint-plugin-import-helpers.git"
},
"author": "Will Honey",
"license": "MIT",
"peerDependencies": {
"eslint": "9.x"
},
"devDependencies": {
"@types/node": "^22.7.8",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"cross-env": "^7.0.3",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-eslint-plugin": "^6.2.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.2.1",
"gulp": "^4.0.2",
"gulp-typescript": "^5.0.1",
"mocha": "^10.7.3",
"nyc": "^17.1.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"typescript": "^5.6.3"
}
}