-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.28 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
{
"name": "fetch-mock-example",
"version": "1.0.0",
"description": "test repo to reproduce the issue with fetch-mock & isomorphic-fetch",
"main": "index.js",
"scripts": {
"test": "karma start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vyorkin-play/fetch-mock-example.git"
},
"keywords": [],
"author": "Vasiliy Yorkin <vasiliy.yorkin@gmail.com> (https://github.com/vyorkin)",
"license": "MIT",
"bugs": {
"url": "https://github.com/vyorkin-play/fetch-mock-example/issues"
},
"homepage": "https://github.com/vyorkin-play/fetch-mock-example#readme",
"devDependencies": {
"babel": "^5.8.21",
"babel-core": "^5.8.22",
"babel-loader": "^5.3.2",
"chai-as-promised": "5.1.0",
"es6-promise": "3.0.2",
"fetch-mock": "3.0.2",
"karma": "0.13.15",
"karma-chai": "0.1.0",
"karma-chai-as-promised": "0.1.2",
"karma-mocha": "0.2.1",
"karma-mocha-reporter": "1.1.3",
"karma-phantomjs-launcher": "0.2.1",
"karma-sinon-chai": "1.1.0",
"karma-sourcemap-loader": "0.3.6",
"karma-webpack": "1.7.0",
"mocha": "2.3.4",
"phantomjs": "1.9.19",
"phantomjs-polyfill": "0.0.1",
"webpack": "1.12.9"
},
"dependencies": {
"babel-runtime": "5.8.20",
"isomorphic-fetch": "2.2.0"
}
}