-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·56 lines (56 loc) · 1.46 KB
/
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
47
48
49
50
51
52
53
54
55
56
{
"name": "@dappdb/core",
"version": "0.1.1",
"description": "Distributed scaleable database for dWeb-based applications.",
"main": "index.js",
"dependencies": {
"@ddatabase/core": "~0.2.3",
"@ddatabase/protocol": "~0.3.2",
"array-lru": "^1.1.1",
"bulk-write-stream": "^1.1.3",
"codecs": "^1.2.1",
"compare": "^2.0.0",
"inherits": "^2.0.3",
"mutexify": "^1.2.0",
"nanoiterator": "^1.1.0",
"protocol-buffers-encodings": "^1.1.0",
"random-access-file": "^2.0.1",
"sodium-universal": "^2.0.0",
"thunky": "^1.0.2",
"unordered-array-remove": "^1.0.2",
"unordered-set": "^2.0.0",
"varint": "^5.0.0"
},
"devDependencies": {
"prettier": "^1.12.0",
"protocol-buffers": "^4.0.4",
"random-access-latency": "^1.0.0",
"random-access-memory": "^3.0.0",
"seed-random": "^2.2.0",
"standard": "^11.0.0",
"stream-collector": "^1.0.1",
"tape": "^4.9.0"
},
"scripts": {
"test": "standard && tape test/*.js",
"protobuf": "protocol-buffers schema.proto -o lib/messages.js"
},
"repository": {
"type": "git",
"url": "https://github.com/dappdb/core.git"
},
"author": "Distributed Webs Project (@distributedweb)",
"license": "MIT",
"bugs": {
"url": "https://github.com/dappdb/core/issues"
},
"homepage": "https://github.com/dappdb/core#readme",
"standard": {
"ignore": [
"test/helpers/fuzzing.js"
]
},
"publishConfig": {
"access": "public"
}
}