-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
65 lines (65 loc) · 1.81 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
{
"name": "@shoutem/fetch-token-intercept",
"version": "0.3.1",
"description": "Fetch interceptor for managing refresh token flow.",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"lint": "eslint .",
"test": "mocha --require babelTestSetup --reporter spec --recursive test",
"coverage": "babel-node node_modules/isparta/bin/isparta cover --report text --report html node_modules/mocha/bin/_mocha -- -R spec --recursive test",
"build": "babel src --out-dir lib"
},
"repository": {
"type": "git",
"url": "https://github.com/shoutem/fetch-token-intercept/"
},
"keywords": [
"fetch",
"intercept",
"refresh",
"token",
"access"
],
"author": "Shoutem",
"license": "BSD",
"bugs": {
"url": "https://github.com/shoutem/fetch-token-intercept/issues"
},
"homepage": "",
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-core": "^6.9.1",
"babel-eslint": "^9.0.0",
"babel-plugin-transform-builtin-extend": "^1.1.2",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.3.13",
"babel-register": "^6.9.0",
"chai": "^3.5.0",
"chai-shallow-deep-equal": "^1.4.0",
"deep-freeze": "0.0.1",
"es6-promise": "^4.0.5",
"eslint": "5.15.3",
"eslint-config-airbnb": "~17.1.0",
"eslint-plugin-flow-vars": "^0.4.0",
"eslint-plugin-import": "~2.16.0",
"eslint-plugin-jsx-a11y": "~6.2.1",
"eslint-plugin-react": "~7.12.4",
"estraverse-fb": "^1.3.1",
"express": "^4.14.1",
"fetch-everywhere": "^1.0.5",
"isparta": "^4.0.0",
"istanbul": "0.4.4",
"mocha": "^2.5.3",
"nock": "^8.0.0",
"sinon": "^1.17.4"
},
"dependencies": {
"auto-bind": "~4.0.0",
"babel-register": "^6.9.0",
"lodash": "^4.17.4"
}
}