-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
37 lines (37 loc) · 1001 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
{
"name": "@simpleweb/redux-saga-oauth",
"version": "2.0.2",
"description": "An OAuth module for Redux Saga powered applications",
"main": "lib/index.js",
"repository": "git@github.com:simpleweb/redux-saga-oauth.git",
"author": "Benjamin Reid <ben@simpleweb.co.uk>",
"license": "MIT",
"files": [
"lib"
],
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"coverage": "jest --coverage",
"copy-flow": "flow-copy-source src lib",
"build": "babel src/ -d lib/",
"prepublish": "yarn run build && yarn run copy-flow"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.4.0",
"babel-preset-flow": "^6.23.0",
"flow-bin": "^0.46.0",
"flow-copy-source": "^1.1.0",
"jest": "^20.0.1",
"redux": "^3.6.0",
"redux-logger": "^3.0.1"
},
"dependencies": {
"axios": "^0.16.1"
},
"peerDependencies": {
"redux-saga": "^0.15.3"
}
}