forked from akanass/rx-http-request
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.04 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.04 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@akanass/rx-http-request",
"version": "2.7.0",
"description": "The world-famous HTTP client Request now RxJS compliant, wrote in Typescript | ES6 for client and server side.",
"main": "commonjs/index.js",
"module": "es2015/index.js",
"types": "typings/index.d.ts",
"private": false,
"scripts": {
"pretest": "make pretest",
"test": "make test",
"coveralls": "make coveralls",
"clean": "make clean",
"tsc": "make tsc",
"packaging": "make packaging",
"browserify": "make browserify",
"prebuild": "make test && make clean",
"build": "make tsc",
"postbuild": "make packaging && make browserify"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/njl07/rx-http-request.git"
},
"keywords": [
"Request",
"RxJS",
"Rx",
"ReactiveX",
"Observable",
"Observer",
"HTTP",
"API",
"Streams",
"Async",
"ES2015",
"ES2016",
"ES2017",
"ES6",
"ES7",
"ES8",
"Typescript",
"Browser"
],
"author": "Nicolas Jessel",
"license": "MIT",
"bugs": {
"url": "https://github.com/njl07/rx-http-request/issues"
},
"homepage": "https://github.com/njl07/rx-http-request#readme",
"dependencies": {
"@types/node": "^8.0.28",
"@types/request": "^2.0.3",
"request": "^2.81.0"
},
"devDependencies": {
"@types/fs-extra": "^4.0.2",
"browserify": "^14.4.0",
"coveralls": "^2.13.1",
"exorcist": "^0.4.0",
"fs-extra": "^4.0.2",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^3.5.3",
"mocha-typescript": "^1.1.8",
"rxjs": "^5.4.3",
"rimraf": "^2.6.2",
"ts-node": "^3.3.0",
"tslint": "^5.7.0",
"typescript": "^2.5.2",
"unit.js": "^2.0.0"
},
"peerDependencies": {
"rxjs": "^5.4.3"
},
"engines": {
"node": ">=7.0.0"
}
}