-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.1 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
{
"name": "eslint-plugin-esm-import",
"version": "0.0.1",
"description": "ESLint plugin which enforces explicit .js extensions in local imports while leveraging import resolvers.",
"main": "index.js",
"scripts": {
"lint": "npm i && cd test && npm link .. && npm i && ./node_modules/.bin/eslint . || true",
"fix": "npm i && cd test && npm link .. && npm i && ./node_modules/.bin/eslint . --fix || true"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sematext/eslint-plugin-esm-import.git"
},
"files": [
"index.js"
],
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"esm"
],
"author": "Marko Bonaci <support@sematext.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/sematext/eslint-plugin-esm-import/issues"
},
"homepage": "https://github.com/sematext/eslint-plugin-esm-import#readme",
"peerDependencies": {
"eslint": "^8",
"eslint-plugin-import": "^2",
"eslint-module-utils": "^2"
},
"devDependencies": {
"eslint": "^8",
"eslint-plugin-import": "^2",
"eslint-module-utils": "^2"
}
}