-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
60 lines (60 loc) · 1.43 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
{
"name": "eslint-plugin-array-func",
"version": "3.1.5",
"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": {
"@ava/babel": "^1.0.1",
"@freaktechnik/eslint-config-node": "^7.1.0",
"@freaktechnik/eslint-config-test": "^7.1.0",
"@typescript-eslint/parser": "^2.27.0",
"ava": "^3.7.1",
"codecov": "^3.6.5",
"eclint": "^2.8.1",
"eslint": "^6.8.0",
"eslint-ava-rule-tester": "^4.0.0",
"eslint-plugin-eslint-plugin": "^2.2.1",
"nyc": "^15.0.1",
"typescript": "^3.8.3"
},
"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": {},
"ava": {
"babel": true,
"files": [
"test/**/*",
"!test/helpers"
]
}
}