-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
59 lines (59 loc) · 1.42 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": "iso-http",
"version": "0.0.5",
"description": "An HTTP request library that enables isomorphic applications.",
"main": "js/node/Http.js",
"browser": "js/browser/Http.js",
"scripts": {
"test": "gulp test"
},
"repository": {
"type": "git",
"url": "https://github.com/jedmao/iso-http.git"
},
"keywords": [
"http",
"request",
"isomorphic",
"ajax",
"browser"
],
"author": "Jed Mao <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jedmao/iso-http/issues"
},
"homepage": "https://github.com/jedmao/iso-http",
"files": [
"README.md",
"fake.js",
"js/"
],
"devDependencies": {
"browserify": "^11.1.0",
"cors": "^2.7.1",
"del": "^2.0.2",
"event-stream": "^3.3.1",
"express": "^4.13.3",
"gulp": "^3.9.0",
"gulp-istanbul": "^0.10.0",
"gulp-jasmine": "^2.0.1",
"gulp-plumber": "^1.0.1",
"gulp-rename": "^1.2.2",
"gulp-streamify": "^1.0.2",
"gulp-tslint": "^3.2.0",
"gulp-typescript": "^2.8.3",
"gulp-uglify": "^1.4.1",
"jasmine-core": "^2.3.4",
"karma": "^0.13.9",
"karma-chrome-launcher": "^0.2.0",
"karma-commonjs": "0.0.13",
"karma-coverage": "^0.5.2",
"karma-firefox-launcher": "^0.1.6",
"karma-ie-launcher": "^0.2.0",
"karma-jasmine": "^0.3.6",
"karma-safari-launcher": "^0.1.1",
"through2": "^2.0.0",
"vinyl-source-stream": "^1.1.0"
}
}