-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1000 Bytes
/
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
{
"name": "@mkeen/rxhttp",
"version": "3.2.0",
"description": "Modern Fetch-Based HTTP Client",
"keywords": [
"http",
"http-client",
"http-fetch",
"fetch",
"rxjs6",
"rxjs",
"typescript",
"javascript",
"javascript-library",
"npm-module"
],
"main": "dist/rxhttp.js",
"types": "dist/rxhttp.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/mkeen/rxhttp"
},
"scripts": {
"build": "tsc",
"doc": "typedoc --out doc --gaSite rxhttp",
"test:node": "ts-node src/test/node.ts"
},
"author": "Mike Keen",
"license": "ISC",
"dependencies": {
"browser-or-node": "^1.3.0",
"buffer": "^5.6.0",
"fs": "0.0.1-security",
"lodash": "^4.17.20",
"node-fetch": "^2.6.0",
"rxjs": "^6.6.2"
},
"devDependencies": {
"@types/lodash": "^4.14.159",
"@types/node-fetch": "^2.5.7",
"ts-loader": "6.2.1",
"ts-node": "^7.0.1",
"typedoc": "^0.20.15",
"typescript": "^4.1.0"
}
}