forked from mlegenhausen/fetch-intercept
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.55 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
{
"name": "fetch-intercept",
"version": "2.2.3",
"description": "Interceptor library for the native fetch command inspired by angular http intercepts.",
"main": "lib/index.js",
"scripts": {
"test": "eslint . && karma start",
"test:watch": "karma start --no-single-run",
"webpack": "webpack",
"prepublish": "npm test && webpack && webpack -p"
},
"homepage": "https://github.com/werk85/fetch-intercept",
"bugs": {
"url": "https://github.com/werk85/fetch-intercept/issues",
"email": "legenhausen@werk85.de"
},
"repository": {
"url": "https://github.com/werk85/fetch-intercept.git"
},
"keywords": [
"fetch",
"request",
"intercept",
"interceptor",
"hooks"
],
"author": "Malte Legenhausen <legenhausen@werk85.de>",
"license": "MIT",
"devDependencies": {
"babel": "^6.5.2",
"babel-core": "^6.7.4",
"babel-eslint": "^6.0.0",
"babel-loader": "^6.2.4",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"eslint": "^2.5.3",
"eslint_d": "^3.1.0",
"expect": "^1.16.0",
"exports-loader": "^0.6.3",
"imports-loader": "^0.6.5",
"isparta": "^4.0.0",
"istanbul-instrumenter-loader": "^0.2.0",
"karma": "^0.13.22",
"karma-chrome-launcher": "^0.2.3",
"karma-coverage": "^0.5.5",
"karma-mocha": "^0.2.2",
"karma-phantomjs-launcher": "^1.0.0",
"karma-webpack": "^1.7.0",
"mocha": "^2.4.5",
"optimist": "^0.6.1",
"phantomjs-prebuilt": "^2.1.7",
"webpack": "^1.12.14",
"whatwg-fetch": "^0.11.0"
},
"dependencies": {}
}