-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.24 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "eslint-config-jsdoc-strict",
"version": "2.0.0",
"description": "ESLint shareable config for JSDoc-related rules.",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/amercier/eslint-config-jsdoc-strict"
},
"author": "Alex Mercier <pro.alexandre.mercier@gmail.com> (http://amercier.com)",
"files": [
"index.js",
"eslintrc.json"
],
"main": "index.js",
"keywords": [
"style checker",
"code style",
"code checker",
"code linter",
"style linter",
"simple",
"policy",
"style",
"code",
"lint",
"eslint",
"eslintconfig",
"jshint",
"jscs",
"hint",
"enforce",
"check",
"verify",
"quality",
"checker",
"code standards",
"jsdoc",
"esdoc",
"config",
"eslint-plugin-jsdoc"
],
"scripts": {
"test": "./node_modules/.bin/eslint --ignore-path .gitignore ."
},
"dependencies": {},
"devDependencies": {
"eslint": "^5.5.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsdoc": "^5.0.0"
},
"peerDependencies": {
"eslint-plugin-jsdoc": "*"
},
"eslintConfig": {
"extends": [
"airbnb-base",
"./eslintrc.json"
]
}
}