This repository was archived by the owner on Oct 25, 2022. It is now read-only.
forked from jednano/iso-http
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.42 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.42 KB
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 <jedmao@outlook.com>",
"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": "^6.3.3",
"cors": "^2.5.2",
"del": "^0.1.3",
"event-stream": "^3.1.7",
"express": "^4.10.4",
"gulp": "^3.8.10",
"gulp-istanbul": "^0.4.0",
"gulp-jasmine": "^1.0.1",
"gulp-plumber": "^0.6.6",
"gulp-rename": "^1.2.0",
"gulp-streamify": "0.0.5",
"gulp-tslint": "^1.4.1",
"gulp-typescript": "^2.3.0",
"gulp-uglify": "^1.0.1",
"jasmine-core": "^2.1.2",
"karma": "^0.12.28",
"karma-chrome-launcher": "^0.1.6",
"karma-commonjs": "0.0.12",
"karma-coverage": "^0.2.7",
"karma-firefox-launcher": "^0.1.3",
"karma-ie-launcher": "^0.1.5",
"karma-jasmine": "^0.3.2",
"karma-safari-launcher": "^0.1.1",
"through2": "^0.6.3",
"vinyl-source-stream": "^1.0.0"
}
}