forked from peer-base/peer-base
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.68 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "peer-base",
"version": "0.12.0-rc6",
"description": "Peer-Star App support for real-time collaborative DApps built on top of IPFS",
"leadMaintainer": "Jim Pick <[email protected]>",
"main": "src/index.js",
"scripts": {
"test": "npm run lint && npm run test:browser",
"test:node": "aegir test -t node",
"test:browser": "aegir test -t browser",
"test:webworker": "aegir test -t webworker",
"test:post-deploy": "node test/deployed-pinner-test.js",
"lint": "aegir lint",
"test:perf": "mocha test/performance/all.js",
"pinner": "node bin/pinner",
"sim:watch": "watchify -v --debug sim/javascripts -o sim/sim.js"
},
"bin": {
"pinner": "bin/pinner"
},
"repository": {
"type": "git",
"url": "git+https://github.com/peer-base/peer-base.git"
},
"keywords": [
"ipfs",
"app",
"dapp",
"collaborative",
"crdt"
],
"author": "IPFS Shipyard",
"license": "MIT",
"bugs": {
"url": "https://github.com/peer-base/peer-base/issues"
},
"homepage": "https://github.com/peer-base/peer-base#readme",
"dependencies": {
"asino": "~0.3.3",
"big-integer": "^1.6.41",
"browser-process-hrtime": "^1.0.0",
"datastore-core": "~0.6.0",
"datastore-level": "~0.10.0",
"debug": "^4.1.1",
"delay": "^4.1.0",
"delta-crdts": "~0.10.2",
"delta-crdts-msgpack-codec": "~0.2.0",
"frequency-counter": "^1.0.1",
"hat": "0.0.3",
"interface-datastore": "~0.6.0",
"ipfs": "0.34.2",
"ipfs-api": "^26.1.2",
"leftpad": "0.0.1",
"libp2p": "~0.24.4",
"libp2p-bootstrap": "~0.9.7",
"libp2p-crypto": "~0.16.0",
"libp2p-mplex": "~0.8.4",
"libp2p-secio": "~0.11.1",
"libp2p-websocket-star-multi": "~0.4.0",
"libp2p-websockets": "~0.12.1",
"lodash": "^4.17.11",
"memdown": "^3.0.0",
"msgpack-lite": "~0.1.26",
"multiaddr": "^6.0.3",
"multihashing": "~0.3.3",
"p-event": "^2.2.0",
"p-queue": "^3.0.0",
"peer-id": "~0.12.2",
"peer-info": "~0.15.1",
"prom-client": "^11.2.1",
"pull-length-prefixed": "^1.3.1",
"pull-pushable": "^2.2.0",
"pull-stream": "^3.6.9",
"radix-64": "^1.0.4",
"vectorclock": "0.0.0"
},
"devDependencies": {
"aegir": "18.0.3",
"babel-eslint": "^10.0.1",
"bs58": "^4.0.1",
"chai": "^4.2.0",
"d3": "^5.7.0",
"dirty-chai": "^2.0.1",
"execa": "^1.0.0",
"ipfs-repo": "~0.26.1",
"libp2p-websocket-star-rendezvous": "~0.3.0",
"lodash.uniq": "^4.5.0",
"pull-pair": "^1.1.0",
"rimraf": "^2.6.3",
"sinon": "^7.2.3",
"watchify": "^3.11.0"
},
"browser": {
"./test/utils/repo.js": "./test/utils/repo-browser.js"
},
"pre-push": [
"lint",
"test"
]
}