-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
32 lines (32 loc) · 898 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
{
"name": "dpp-db",
"version": "2.7.0",
"description": "Deep Persistent Proxy: Persistent Objects in your Browser",
"type": "module",
"main": "/src/dpp.js",
"browser": "/src/dpp.min.js",
"exports": {
".": "./src/dpp.js",
"./node": "./src/dpp_node.js",
"./createKV": "./db/key-value-store/dpp-kv_node.js",
"./KV": "./db/key-value-store/dpp-kv.js",
"./createLIST": "./db/list-store/dpp-list_node.js",
"./LIST": "./db/list-store/dpp-list.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/robtweed/DPP.git"
},
"author": "Rob Tweed, MGateway Ltd",
"license": "Apache-2.0",
"dependencies": {
"qoper8-ww": "latest"
},
"bugs": {
"url": "https://github.com/robtweed/DPP/issues"
},
"homepage": "https://github.com/robtweed/DPP#readme"
}