-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 843 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 843 Bytes
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
{
"name": "grenache-nodejs-base",
"version": "1.1.0",
"private": false,
"description": "Granache Node.js base",
"author": "prdn <paolo@bitfinex.com> (https://bitfinex.com/)",
"keywords": [
"grenache",
"kademlia",
"nodejs",
"micro-services"
],
"engine": {
"node": ">=16.0"
},
"dependencies": {
"@bitfinex/lib-js-util-base": "git+https://github.com/bitfinexcom/lib-js-util-base#v2.0.0",
"async": "3.2.6",
"duplexify": "4.1.3",
"pump": "3.0.2",
"uuid": "11.1.0"
},
"main": "index.js",
"devDependencies": {
"standard": "17.1.2"
},
"scripts": {
"test": "npm run lint",
"lint": "standard",
"lint:fix": "standard --fix"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/bitfinexcom/grenache-nodejs-base.git"
}
}