forked from jfmengels/eslint-plugin-fp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 1.75 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "eslint-plugin-fp-jxl",
"version": "3.0.0",
"description": "ESLint rules for functional programming",
"license": "MIT",
"repository": "jesterxl/eslint-plugin-fp-jxl",
"private": false,
"authors": [
{
"name": "Jeroen Engels",
"email": "jfm.engels@gmail.com",
"url": "github.com/jfmengels"
},
{
"name": "Ivan Dmitriev",
"email": "iam@ivandmitriev.com",
"url": "http://ivandmitriev.com"
},
{
"name": "Thomas Grainger",
"email": "website@graingert.co.uk",
"url": "https://graingert.co.uk/"
},
{
"name": "Bart Bakker",
"email": "bart@thesoftwarecraft.com",
"url": "https://blog.thesoftwarecraft.com/"
},
{
"name": "Jesse Warden",
"email": "jesterxl@jessewarden.com",
"url": "http://jessewarden.com"
}
],
"engines": {
"node": ">=4.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",
"fp",
"FP",
"function",
"functional",
"programming",
"lodash",
"ramda",
"monad",
"immutable",
"function",
"functions",
"method",
"methods"
],
"dependencies": {
"create-eslint-index": "^1.0.0",
"eslint-ast-utils": "^1.0.0",
"lodash": "^4.13.1",
"req-all": "^2.0.0"
},
"devDependencies": {
"ava": "~0.21.0",
"eslint": "^4.4.0",
"eslint-ava-rule-tester": "^2.0.2",
"inject-in-tag": "^1.1.1",
"nyc": "^11.1.0",
"pify": "^3.0.0",
"xo": "~0.18.2"
},
"peerDependencies": {
"eslint": ">=5"
},
"xo": {
"esnext": true,
"space": 2
}
}