-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 909 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
{
"name": "ushin-db",
"version": "1.0.0",
"description": "The database for storing USHIN data / querying across the p2p network",
"main": "index.js",
"scripts": {
"test": "npm run lint && node test",
"lint": "prettier --write ./*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/USHIN-Inc/ushin-db.git"
},
"keywords": [
"ushin",
"db",
"social",
"deliberation",
"core"
],
"author": "rangermauve <[email protected]> (https://mauve.moe/)",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/USHIN-Inc/ushin-db/issues"
},
"homepage": "https://github.com/USHIN-Inc/ushin-db#readme",
"dependencies": {
"hyper-sdk": "^3.0.6",
"pouchdb": "^7.2.2",
"pouchdb-adapter-hyperbee": "^1.0.3",
"pouchdb-find": "^7.2.2"
},
"devDependencies": {
"prettier": "^2.1.1",
"tape": "^5.0.1"
}
}