-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.03 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
{
"name": "peer-crdt-ipfs",
"version": "0.4.0",
"description": "peer-crdt network and store over IPFS",
"main": "src/index.js",
"scripts": {
"test": "mocha test",
"lint": "standard"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ipfs-shipyard/peer-crdt-ipfs.git"
},
"keywords": [
"CRDT",
"IPFS",
"Peer"
],
"author": "Pedro Teixeira <i@pgte.me>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ipfs-shipyard/peer-crdt-ipfs/issues"
},
"homepage": "https://github.com/ipfs-shipyard/peer-crdt-ipfs#readme",
"devDependencies": {
"async": "^2.6.0",
"chai": "^4.1.2",
"cuid": "^1.3.8",
"dirty-chai": "^2.0.1",
"ipfs": "^0.27.5",
"mocha": "^4.0.1",
"peer-crdt": "^0.5.0",
"pre-commit": "^1.2.2",
"standard": "^10.0.3"
},
"pre-commit": [
"lint",
"test"
],
"dependencies": {
"bs58": "^4.0.1",
"es6-promisify": "^5.0.0",
"ipfs-pubsub-room": "^1.1.5",
"lodash.debounce": "^4.0.8",
"p-limit": "^1.1.0"
}
}