-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.24 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.24 KB
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
{
"name": "eslint-plugin-interfaced",
"version": "2.0.2",
"description": "ESLint plugin with essential rules for Closure Compiler environment and JSDoc",
"license": "MIT",
"author": "Interfaced (http://interfaced.tv)",
"homepage": "https://github.com/interfaced/eslint-plugin-interfaced",
"repository": {
"type": "git",
"url": "git@github.com:interfaced/eslint-plugin-interfaced.git"
},
"contributors": [
"Kirill Dronkin <kirilldronkin@gmail.com>",
"Goryaynov Igor <ygreknomean@gmail.com>"
],
"engines": {
"node": ">=6",
"npm": ">=5"
},
"scripts": {
"lint": "eslint lib test",
"test": "npm run test.eslint && npm run test.unit",
"test.eslint": "mocha test/eslint",
"test.unit": "mocha test/unit"
},
"files": [
"LICENSE",
"README.md",
"CHANGELOG.md",
"index.js",
"lib",
"docs"
],
"keywords": [
"lint",
"eslint",
"plugin",
"interfaced",
"closure compiler",
"jsdoc"
],
"peerDependencies": {
"eslint": "^8.3.0"
},
"devDependencies": {
"chai": "4.3.4",
"eslint": "^8.3.0",
"mocha": "^9.1.3"
},
"dependencies": {
"doctrine": "github:interfaced/doctrine#range-fixes",
"esutils": "2.0.3",
"pluralize": "^8.0.0"
}
}