forked from ipfs/js-datastore-pubsub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.5 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
57
{
"name": "datastore-pubsub",
"version": "0.1.1",
"description": "Responsible for providing an interface-datastore compliant api to pubsub",
"leadMaintainer": "Vasco Santos <[email protected]>",
"main": "src/index.js",
"scripts": {
"build": "aegir build",
"lint": "aegir lint",
"release": "aegir release --target node",
"release-minor": "aegir release --type minor",
"release-major": "aegir release --type major",
"test": "aegir test -t node",
"test:node": "aegir test -t node"
},
"pre-push": [
"lint"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ipfs/js-datastore-pubsub.git"
},
"keywords": [
"ipfs",
"datastore",
"pubsub"
],
"author": "Vasco Santos <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ipfs/js-datastore-pubsub/issues"
},
"homepage": "https://github.com/ipfs/js-datastore-pubsub#readme",
"dependencies": {
"assert": "^1.4.1",
"async": "^2.6.2",
"debug": "^4.1.1",
"err-code": "^1.1.2",
"interface-datastore": "~0.6.0",
"multibase": "~0.6.0"
},
"devDependencies": {
"aegir": "^18.1.1",
"chai": "^4.2.0",
"detect-node": "^2.0.4",
"dirty-chai": "^2.0.1",
"ipfs": "~0.34.4",
"ipfsd-ctl": "~0.42.0",
"libp2p-record": "~0.6.2",
"sinon": "^7.2.4"
},
"contributors": [
"Vasco Santos <[email protected]>",
"Vasco Santos <[email protected]>",
"Victor Bjelkholm <[email protected]>"
]
}