-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
50 lines (50 loc) · 1.1 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-ramda",
"version": "3.0.0-beta.1",
"description": "ESLint rules for use with Ramda",
"license": "MIT",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"ramda",
"fantasy-land"
],
"author": "Marcelo Camargo <[email protected]>",
"contributors": [
"Mathias Schreck <[email protected]>"
],
"main": "index.js",
"scripts": {
"lint": "eslint ./",
"test": "nyc ava",
"report-coverage": "nyc report --reporter=lcov > coverage.lcov && codecov"
},
"dependencies": {
"create-eslint-index": "^1.0.0",
"ramda": "0.25.0",
"req-all": "^2.0.0"
},
"devDependencies": {
"ava": "^1.1.0",
"codecov": "^3.0.0",
"eslint": "^5.12.1",
"eslint-ava-rule-tester": "^3.0.0",
"eslint-plugin-node": "^8.0.0",
"nyc": "^11.3.0"
},
"repository": {
"type": "git",
"url": "git://github.com/ramda/eslint-plugin-ramda.git"
},
"engines": {
"node": ">=6.0.0 <7 || >=8.0.0 <9 || >=10.0.0"
},
"files": [
"index.js",
"ast-helper.js",
"rules/",
"LICENSE",
"README.md"
]
}