-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
50 lines (50 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
{
"name": "eslint-plugin-array-func",
"version": "3.1.0",
"description": "Rules dealing with Array functions and methods.",
"main": "index.js",
"scripts": {
"lint:js": "eslint index.js package.json rules/ test/ --ext js,json",
"lint:ec": "eclint check $(git ls-files)",
"lint": "npm run lint:js && npm run lint:ec",
"test": "npm run lint && nyc ava",
"coverage": "nyc report && codecov"
},
"author": "Martin Giger (https://humanoids.be)",
"license": "MIT",
"devDependencies": {
"@freaktechnik/eslint-config-node": "^6.5.4",
"@freaktechnik/eslint-config-test": "^6.5.4",
"ava": "^0.25.0",
"codecov": "^3.1.0",
"eclint": "^2.8.1",
"eslint": "^5.9.0",
"eslint-ava-rule-tester": "^3.0.0",
"eslint-plugin-eslint-plugin": "^1.4.1",
"nyc": "^13.1.0"
},
"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"
},
"dependencies": {}
}