-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
51 lines (51 loc) · 1.16 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
{
"name": "eslint-plugin-redux-saga",
"version": "1.3.2",
"description": "redux-saga eslint rules",
"author": "Philipp Kursawe <[email protected]",
"contributors": [
{
"name": "Nicolas Fernandez",
"url": "https://github.com/burabure"
}
],
"main": "index.js",
"files": [
"LICENSE",
"README.md",
"index.js",
"lib"
],
"repository": {
"type": "git",
"url": "[email protected]:pke/eslint-plugin-redux-saga.git"
},
"bugs": {
"url": "https://github.com/pke/eslint-plugin-redux-saga/issues"
},
"homepage": "https://github.com/pke/eslint-plugin-redux-saga",
"scripts": {
"lint": "eslint ./",
"pretest": "npm run lint",
"mocha": "mocha --recursive --colors",
"test": "npm run mocha",
"start": "mocha --watch --recursive --colors"
},
"peerDependencies": {
"eslint": ">= 6.7.0",
"redux-saga": ">= 0.11.1 < 1 || >= 1.0.0"
},
"devDependencies": {
"eslint": "8.4.1",
"mocha": "9.1.3",
"redux-saga": ">= 0.11.1 < 1 || >= 1.0.0"
},
"keywords": [
"eslint",
"eslint-plugin",
"eslintplugin",
"redux-saga"
],
"license": "MIT",
"dependencies": {}
}