-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 1.04 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": "@wisersolutions/eslint-formatter-idea",
"description": "Friendly formatter for ESLint that outputs click-through source links for common IDEs",
"version": "1.0.8",
"main": "index.js",
"scripts": {
"lint": "eslint ./ --format './index.js'",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WiserSolutions/eslint-formatter-idea.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"keywords": [
"eslint",
"eslint-formatter"
],
"author": "Jan Konopásek",
"license": "MIT",
"bugs": {
"url": "https://github.com/WiserSolutions/eslint-formatter-idea/issues"
},
"homepage": "https://github.com/WiserSolutions/eslint-formatter-idea#readme",
"devDependencies": {
"@wisersolutions/eslint-config": "^2.0.2",
"babel-eslint": "^10.0.3",
"eslint": "^6.7.1",
"eslint-config-prettier": "^6.7.0"
},
"dependencies": {
"chalk": "^3.0.0"
},
"peerDependencies": {
"eslint": ">=6"
}
}