-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
46 lines (46 loc) · 1010 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": "http-rx",
"version": "2.1.9",
"description": "A reactive http client based on Observable and Request",
"main": "index.js",
"scripts": {
"test": "jest --coverage --config=jest.config.json",
"lint": "eslint . --ext .js",
"qa": "npm run lint && npm run test"
},
"files": [
"lib",
"package.json",
"index.js",
"package-lock.json",
"readme.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/JasonRammoray/HttpRx.git"
},
"keywords": [
"Rx",
"http",
"Observable"
],
"author": "Viacheslav Moskalenko",
"license": "MIT",
"bugs": {
"url": "https://github.com/JasonRammoray/HttpRx/issues"
},
"homepage": "https://github.com/JasonRammoray/HttpRx#readme",
"dependencies": {
"request": "^2.88.2",
"rxjs": "^6.5.5"
},
"engines": {
"node": ">= 10"
},
"devDependencies": {
"eslint": "^8.4.1",
"eslint-config-google": "^0.14.0",
"jest": "^27.4.5",
"nock": "^11.9.1"
}
}