-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 949 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
35
36
37
38
39
40
41
42
{
"name": "@lab9k/eslint-config",
"version": "1.0.4",
"description": "",
"main": "index.js",
"scripts": {
"lint": "eslint . --config=.eslintrc.json",
"test": "npm run lint && tape test/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/lab9k/eslint-config-lab9k.git"
},
"homepage": "https://github.com/lab9k/eslint-config-lab9k",
"keywords": [
"eslint",
"config",
"eslint-config",
"lab9k",
"style",
"javascript",
"js"
],
"publishConfig": {
"access": "public"
},
"author": "",
"license": "ISC",
"devDependencies": {
"eslint": "^5.16.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.1.1",
"tape": "^4.10.2"
},
"peerDependencies": {
"eslint": ">=5.16.0",
"eslint-plugin-import": ">=2.17.3",
"eslint-plugin-node": ">=9.1.0",
"eslint-plugin-promise": ">=4.1.1"
}
}