-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
45 lines (45 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
40
41
42
43
44
45
{
"name": "eslint-plugin-array-func",
"version": "1.0.2",
"description": "Rules dealing with Array functions and methods.",
"main": "index.js",
"scripts": {
"lint": "eslint index.js package.json rules/ test/ --ext js,json",
"test": "npm run lint && nyc ava",
"coverage": "nyc report && codecov"
},
"author": "Martin Giger (https://humanoids.be)",
"license": "MIT",
"devDependencies": {
"ava": "^0.22.0",
"codecov": "^2.3.0",
"eslint": "^4.8.0",
"eslint-ava-rule-tester": "^2.0.2",
"eslint-plugin-eslint-plugin": "^1.2.0",
"eslint-plugin-freaktechnik": "^4.0.0",
"nyc": "^11.2.1"
},
"peerDependencies": {
"eslint": ">=3.0.0"
},
"keywords": [
"eslint",
"eslintplugin"
],
"nyc": {
"reporter": [
"lcov",
"text"
]
},
"engines": {
"node": ">= 6.8.0"
},
"repository": {
"type": "git",
"url": "https://github.com/freaktechnik/eslint-plugin-array-func.git"
},
"bugs": {
"url": "https://github.com/freaktechnik/eslint-plugin-array-func/issues"
}
}