-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 903 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
{
"name": "@mkeen/rxcouch",
"version": "4.8.4",
"description": "Real Time RxJs Based CouchDB Client",
"keywords": [
"couchdb-client",
"couchdb",
"rxjs6",
"rxjs",
"typescript",
"javascript",
"javascript-library",
"npm-module"
],
"main": "dist/rxcouch.js",
"types": "dist/rxcouch.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/mkeen/rxcouch"
},
"scripts": {
"build": "tsc",
"tests:integration:node": "jest"
},
"author": "Mike Keen",
"license": "ISC",
"dependencies": {
"@mkeen/rxhttp": "^3.1.2",
"js-sha256": "^0.9.0",
"lodash": "^4.17.20",
"rxjs": "^6.6.2",
"ts-node": "^9.1.1"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/lodash": "^4.14.159",
"@types/node": "^12.12.54",
"ts-jest": "^26.4.4",
"ts-loader": "^8.0.14",
"typescript": "^3.8.0"
}
}