forked from wheresrhys/fetch-mock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 1.9 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "fetch-mock",
"version": "0.0.0",
"description": "Mock http requests made using fetch (or isomorphic-fetch)",
"main": "src/server.js",
"browser": "es5/client.js",
"scripts": {
"test": "make lint test",
"prepublishOnly": "make transpile bundle",
"postinstall": "node scripts/support-fetch-mock.js"
},
"babel": {
"presets": [
[
"env",
{
"useBuiltIns": "entry"
}
]
],
"plugins": [
[
"transform-runtime",
{
"polyfill": true
}
]
]
},
"repository": {
"type": "git",
"url": "https://github.com/wheresrhys/fetch-mock.git"
},
"keywords": [
"fetch",
"http",
"mock",
"testing",
"spy",
"xhr",
"ajax"
],
"author": "Rhys Evans",
"license": "MIT",
"bugs": {
"url": "https://github.com/wheresrhys/fetch-mock/issues"
},
"homepage": "http://www.wheresrhys.co.uk/fetch-mock",
"dependencies": {
"babel-polyfill": "^6.26.0",
"glob-to-regexp": "^0.4.0",
"whatwg-url": "^6.5.0",
"path-to-regexp": "^2.2.1"
},
"engines": {
"node": ">=4.0.0"
},
"devDependencies": {
"babel-cli": "^6.1.2",
"babel-loader": "^7.1.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"bluebird": "^3.4.6",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"eslint": "^4.14.0",
"eslint-config-origami-component": "^1.0.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.6.1",
"karma": "^2.0.2",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-webpack": "^3.0.0",
"mocha": "^5.1.1",
"node-fetch": "^2.0.0",
"nyc": "^11.7.3",
"prettier": "^1.13.7",
"sinon": "^4.5.0",
"sinon-chai": "^2.14.0",
"webpack": "^4.0.0",
"webpack-cli": "^3.0.0"
}
}