This repository has been archived by the owner on May 11, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
78 lines (78 loc) · 2.1 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
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": "3.3.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": "esm5/index.js",
"es2015": "esm2015/index.js",
"types": "index.d.ts",
"private": false,
"scripts": {
"pretest": "make clean && make pretest",
"test": "make test",
"coveralls": "make coveralls",
"clean": "make clean",
"tsc": "make tsc",
"packaging": "make packaging",
"browserify": "make browserify",
"prebuild": "make clean && make pretest && make test",
"build": "make commonjs && make esm2015 && make esm5",
"postbuild": "make packaging && make browserify"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/akanass/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/akanass/rx-http-request/issues"
},
"homepage": "https://github.com/akanass/rx-http-request#readme",
"dependencies": {
"@types/node": "^12.6.2",
"@types/request": "^2.48.2",
"request": "^2.88.0"
},
"devDependencies": {
"@types/fs-extra": "^8.0.0",
"@types/jest": "^24.0.15",
"browserify": "^16.3.0",
"coveralls": "^3.0.5",
"exorcist": "^1.0.1",
"fs-extra": "^8.1.0",
"jest": "^24.8.0",
"rimraf": "^2.6.3",
"rxjs": "^6.5.2",
"ts-jest": "^24.0.2",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"typescript": "^3.5.3"
},
"peerDependencies": {
"rxjs": "^6.5.2"
},
"engines": {
"node": ">=7.0.0"
}
}