forked from wheresrhys/fetch-mock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.56 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
{
"name": "fetch-mock",
"version": "5.10.0",
"description": "Mock http requests made using fetch (or isomorphic-fetch)",
"main": "src/server.js",
"browser": "es5/client.js",
"scripts": {
"test": "make test",
"browserify": "browserify -s fetchMock es5/client.js > es5/client-browserified.js",
"prepublish": "babel src --out-dir es5 --plugins transform-object-assign --presets es2015 && npm run browserify"
},
"repository": {
"type": "git",
"url": "https://github.com/wheresrhys/fetch-mock.git"
},
"keywords": [
"fetch",
"http",
"mock",
"testing",
"spy",
"ajax",
"xhr"
],
"author": "Rhys Evans",
"license": "MIT",
"bugs": {
"url": "https://github.com/wheresrhys/fetch-mock/issues"
},
"homepage": "http://www.wheresrhys.co.uk/fetch-mock",
"dependencies": {
"glob-to-regexp": "^0.3.0",
"node-fetch": "^1.3.3",
"path-to-regexp": "^1.7.0"
},
"devDependencies": {
"babel": "^6.0.15",
"babel-cli": "^6.1.2",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-preset-es2015": "^6.1.2",
"babelify": "^7.3.0",
"bluebird": "^3.4.6",
"browserify": "^13.1.0",
"chai": "^2.3.0",
"eslint": "^1.10.3",
"karma": "^1.3.0",
"karma-browserify": "^5.1.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.0.0",
"karma-firefox-launcher": "^1.0.0",
"karma-mocha": "^1.2.0",
"karma-phantomjs-launcher": "^1.0.2",
"mocha": "^2.2.4",
"mockery": "^1.4.0",
"sinon": "^1.17.0",
"watchify": "^3.7.0",
"whatwg-fetch": "^0.10.1"
}
}