-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
85 lines (85 loc) · 1.96 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
{
"name": "redux-saga-fetch",
"version": "0.3.1",
"description": "A saga that reduces HTTP request duplication",
"main": "./lib/index.js",
"scripts": {
"pretty": "prettier --single-quote --write {src,test}/**/*.js index.js",
"lint": "eslint src test",
"test": "jest",
"compile": "cross-env NODE_ENV=production babel -d lib/ src/",
"prepare": "install-self-peers -- --ignore-scripts && npm run lint && npm run test && npm run compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dat2/redux-saga-fetch.git"
},
"keywords": [
"redux",
"redux-saga",
"fetch",
"http",
"request"
],
"author": "Nicholas Dujay",
"license": "MIT",
"bugs": {
"url": "https://github.com/dat2/redux-saga-fetch/issues"
},
"files": [
"lib"
],
"homepage": "https://github.com/dat2/redux-saga-fetch#readme",
"devDependencies": {
"@team-griffin/install-self-peers": "^1.1.1",
"babel-cli": "^6.26.0",
"babel-eslint": "^9.0.0",
"babel-jest": "^23.0.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"cross-env": "^5.1.3",
"eslint": "^5.0.0",
"jest": "^22.3.0",
"jest-fetch-mock": "^2.0.0",
"prettier": "^1.10.2",
"redux-saga-test-plan": "^3.5.0"
},
"peerDependencies": {
"redux-saga": "^0.16.0"
},
"jest": {
"collectCoverage": true,
"coverageDirectory": "./coverage/",
"setupFiles": [
"./test/setup.js"
]
},
"eslintConfig": {
"parser": "babel-eslint",
"env": {
"browser": true,
"node": true,
"jest": true
},
"extends": [
"eslint:recommended"
]
},
"babel": {
"presets": [
"env"
],
"plugins": [
"transform-object-rest-spread",
[
"transform-runtime",
{
"helpers": false,
"polyfill": false,
"regenerator": true
}
]
]
}
}