forked from simpleweb/redux-saga-oauth
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.38 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
{
"name": "@simpleweb-keycloak/redux-saga-oauth",
"version": "2.0.5",
"description": "An Keycloak OAuth module for Redux Saga powered applications",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/dmushkov/redux-saga-oauth.git"
},
"author": "Dian Mushkov <[email protected]>",
"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": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-flow": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.4.2",
"flow-bin": "^0.114.0",
"flow-copy-source": "^2.0.9",
"jest": "^24.9.0",
"redux": "^4.0.4",
"redux-logger": "^3.0.1"
},
"dependencies": {
"axios": "^0.19.0",
"jsonwebtoken": "^8.5.1",
"querystring": "^0.2.0"
},
"peerDependencies": {
"redux-saga": "^0.15.3"
},
"bugs": {
"url": "https://github.com/dmushkov/redux-saga-oauth/issues"
},
"homepage": "https://github.com/dmushkov/redux-saga-oauth#readme",
"directories": {
"lib": "lib"
}
}