-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 959 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
{
"name": "@larsdroid/eslint-import-file-extension",
"version": "0.2.6",
"description": "ESLint plugin: enforce that a local file import should end with `.js`.",
"main": "src/eslint-import-file-extension.js",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/larsdroid/eslint-import-file-extension.git"
},
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"import",
"extension"
],
"author": "Lars Willemsens",
"license": "ISC",
"devDependencies": {
"@eslint/js": "^9.4.0",
"dprint": "^0.46.2",
"eslint": "^9.4.0",
"globals": "^15.4.0"
},
"peerDependencies": {
"eslint": ">=9.0.0"
},
"scripts": {
"dprint": "dprint check \"**/*.{js,json}\"",
"lint": "eslint src test *.js",
"test": "node test/eslint-import-file-extension.test.js"
}
}