-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.05 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
{
"name": "redux-saga-request",
"version": "0.1.1",
"description": "🏞 Request helper for Redux Saga.",
"keywords": [
"redux",
"redux-saga",
"request"
],
"homepage": "https://github.com/DylanVann/redux-saga-request#readme",
"bugs": {
"url": "https://github.com/DylanVann/redux-saga-request/issues"
},
"license": "MIT",
"author": "Dylan Vann <dylanvann@gmail.com> (http://dylanvann.com)",
"main": "lib/request.js",
"directories": {
"example": "example"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DylanVann/redux-saga-request.git"
},
"scripts": {
"build": "NODE_ENV=production ./node_modules/.bin/babel ./request.js --out-dir lib/",
"prepublish": "npm run build",
"test": "jest"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-jest": "^19.0.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.4.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"jest": "^19.0.2",
"redux-saga": "^0.14.6"
}
}