-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
45 lines (45 loc) · 967 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
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "grenache-grape",
"version": "0.9.12",
"description": "Granache Grape - DHT for micro-services",
"author": "prdn <[email protected]> (https://bitfinex.com/)",
"keywords": [
"grenache",
"kademlia",
"nodejs",
"micro-services"
],
"dependencies": {
"async": "^3.2.4",
"bittorrent-dht": "^10.0.0",
"cbq": "0.0.1",
"debug": "^4.0.1",
"lodash": "^4.17.21",
"raw-body": "^2.5.2",
"record-cache": "^1.2.0",
"yargs": "^17.7.1"
},
"engine": {
"node": ">=6.0"
},
"bin": {
"grape": "bin/grape.js"
},
"main": "index.js",
"devDependencies": {
"chai": "^4.3.7",
"mocha": "^10.2.0",
"request": "^2.88.0",
"standard": "^17.0.0"
},
"scripts": {
"test": "npm run lint && npm run unit",
"unit": "mocha",
"lint": "standard"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/bitfinexcom/grenache-grape.git"
}
}