-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
59 lines (59 loc) · 1.2 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-lodash-fp",
"version": "2.1.3",
"description": "ESLint rules for lodash/fp",
"license": "MIT",
"repository": "jfmengels/eslint-plugin-lodash-fp",
"author": {
"name": "Jeroen Engels",
"email": "[email protected]",
"url": "github.com/jfmengels"
},
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"test": "xo && nyc ava",
"update-md": "inject-in-tag ./rule-description.js readme.md"
},
"files": [
"index.js",
"rules"
],
"keywords": [
"eslint",
"plugin",
"eslint-plugin",
"eslintplugin",
"lodash",
"lodash/fp",
"lodash-fp",
"fp",
"FP",
"functional",
"programming"
],
"dependencies": {
"create-eslint-index": "^1.0.0",
"enhance-visitors": "^1.0.0",
"eslint-ast-utils": "^1.0.0",
"lodash": "^4.11.1",
"req-all": "^1.0.0"
},
"devDependencies": {
"ava": "^1.0.0-beta.8",
"eslint": "^5.1.0",
"eslint-ava-rule-tester": "graingert/eslint-ava-rule-tester#support-ava-1",
"inject-in-tag": "^1.1.1",
"nyc": "^12.0.2",
"pify": "^3.0.0",
"xo": "^0.22.0"
},
"peerDependencies": {
"eslint": ">=3"
},
"xo": {
"exnext": true,
"space": 2
}
}