-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 904 Bytes
/
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
{
"name": "@rainforestqa/eslint-plugin",
"version": "1.0.0",
"description": "Custom rules built for Rainforest QA",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin"
],
"author": "prayogoa",
"main": "./lib/index.js",
"exports": "./lib/index.js",
"scripts": {
"lint": "eslint .",
"test": "mocha tests --recursive"
},
"dependencies": {
"requireindex": "^1.2.0"
},
"devDependencies": {
"@rainforestqa/eslint-config": "^2.0.2",
"eslint": "7",
"eslint-plugin-eslint-plugin": "^5.0.0",
"eslint-plugin-node": "^11.1.0",
"mocha": "^10.0.0",
"mocha-junit-reporter": "^2.2.0",
"mocha-multi": "^1.1.7",
"prettier": "^2.8.0"
},
"engines": {
"node": "^14.17.0 || ^16.0.0 || >= 18.0.0"
},
"peerDependencies": {
"eslint": ">=7"
},
"prettier": "@rainforestqa/eslint-config/prettier.config",
"license": "ISC"
}