-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 974 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
{
"name": "redux-api-token-middleware",
"version": "0.0.6",
"description": "A redux middleware for token base API endpoint, will help you request token and save it to local storage before fetching actual endpoint.",
"main": "dist/index.js",
"scripts": {
"build-dist": "`npm bin`/babel src -d dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kyawkyawsoezhu/redux-api-token-middleware.git"
},
"keywords": [
"redux",
"middleware",
"promise",
"async"
],
"author": "Kyaw Kyaw Soe",
"license": "ISC",
"bugs": {
"url": "https://github.com/kyawkyawsoezhu/redux-api-token-middleware/issues"
},
"homepage": "https://github.com/kyawkyawsoezhu/redux-api-token-middleware#readme",
"dependencies": {
"axios": "^0.16.2",
"jsonwebtoken": "^8.0.1",
"moment": "^2.18.1",
"secure-keys": "^1.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.0"
}
}