-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
59 lines (59 loc) · 1.38 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
{
"name": "eslint-plugin-array-func",
"version": "5.0.1",
"description": "Rules dealing with Array functions and methods.",
"main": "index.js",
"scripts": {
"lint:js": "eslint index.js package.json rules/ test/",
"lint": "npm run lint:js",
"test": "npm run lint && c8 ava",
"coverage": "c8 report -r lcov"
},
"author": "Martin Giger (https://humanoids.be)",
"license": "MIT",
"devDependencies": {
"@freaktechnik/eslint-config-node": "^10.0.3",
"@freaktechnik/eslint-config-test": "^10.0.6",
"@typescript-eslint/parser": "^7.16.0",
"ava": "^6.1.3",
"c8": "^10.1.2",
"eslint": "^8.57.0",
"eslint-ava-rule-tester": "^5.0.1",
"eslint-plugin-eslint-plugin": "^6.2.0",
"eslint-plugin-optimize-regex": "^1.2.1",
"typescript": "^5.5.3"
},
"peerDependencies": {
"eslint": ">=8.51.0"
},
"keywords": [
"eslint",
"eslintplugin"
],
"nyc": {
"reporter": [
"lcov",
"text"
]
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/freaktechnik/eslint-plugin-array-func.git"
},
"bugs": {
"url": "https://github.com/freaktechnik/eslint-plugin-array-func/issues"
},
"ava": {
"files": [
"test/**/*",
"!test/helpers"
]
},
"publishConfig": {
"provenance": true
},
"type": "module"
}