-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 848 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 848 Bytes
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
{
"name": "eslint-config-vi",
"version": "11.0.0",
"description": "ESLint shareable config used by VI Company",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/vicompany/eslint-config-vi.git"
},
"scripts": {
"check": "eslint-find-rules -u -n ./node.js",
"test": "eslint test/**/*.js",
"preversion": "npm test",
"postversion": "git push --follow-tags"
},
"author": "VI Company",
"license": "MIT",
"keywords": [
"eslint",
"eslintconfig",
"vi-company"
],
"engines": {
"node": ">=8.10"
},
"peerDependencies": {
"eslint-config-airbnb-base": ">= 14.2.1",
"eslint": ">=7.20.0"
},
"devDependencies": {
"eslint": "7.20.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-find-rules": "3.6.1",
"eslint-plugin-import": "2.22.1"
}
}