-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 904 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
{
"type": "module",
"name": "foundationdb-pouchdb",
"version": "0.0.0",
"author": "Keijo Kapp",
"license": "ISC",
"exports": {
".": "./lib/index.js",
"./adapter": "./lib/adapter.js",
"./plugin": "./lib/plugin.js"
},
"files": [
"lib"
],
"scripts": {
"lint": "eslint lib test eslint.config.js"
},
"dependencies": {
"double-ended-queue": "^2.1.0-0",
"foundationdb": "^2.0.1",
"pouchdb-errors": "^8.0.1",
"pouchdb-merge": "^8.0.1",
"pouchdb-utils": "^8.0.1"
},
"devDependencies": {
"@arbendium/eslint-config-base": "^0.2.1",
"@types/double-ended-queue": "^2.1.7",
"@types/node": "^20.12.7",
"eslint": "^8.54.0",
"express": "^4.19.2",
"pouchdb-adapter-http": "^8.0.1",
"pouchdb-core": "^8.0.1",
"pouchdb-express-router": "^0.0.11",
"pouchdb-mapreduce": "^8.0.1",
"pouchdb-replication": "^8.0.1"
}
}