forked from multiformats/js-multiaddr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.92 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
{
"name": "multiaddr",
"version": "3.0.1",
"description": "multiaddr implementation (binary + string representation of network addresses)",
"main": "src/index.js",
"scripts": {
"lint": "aegir-lint",
"test": "aegir-test",
"test:node": "aegir-test node",
"test:browser": "aegir-test browser",
"build": "aegir-build",
"release": "aegir-release",
"release-minor": "aegir-release --type minor",
"release-major": "aegir-release --type major",
"coverage": "aegir-coverage",
"coverage-publish": "aegir-coverage publish",
"docs": "aegir-docs"
},
"pre-commit": [
"lint",
"test"
],
"repository": {
"type": "git",
"url": "https://github.com/multiformats/js-multiaddr.git"
},
"keywords": [
"multiaddr",
"binary",
"string"
],
"author": "Juan Benet <[email protected]> (http://juan.benet.ai/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/multiformats/js-multiaddr/issues"
},
"homepage": "https://github.com/multiformats/js-multiaddr",
"dependencies": {
"bs58": "^4.0.1",
"ip": "^1.1.5",
"lodash.filter": "^4.6.0",
"lodash.map": "^4.6.0",
"varint": "^5.0.0",
"xtend": "^4.0.1"
},
"devDependencies": {
"aegir": "^11.0.2",
"buffer-loader": "0.0.1",
"chai": "^4.1.2",
"dirty-chai": "^2.0.1",
"pre-commit": "^1.2.2"
},
"contributors": [
"David Dias <[email protected]>",
"Dmitriy Ryajov <[email protected]>",
"Friedel Ziegelmayer <[email protected]>",
"Juan Batiz-Benet <[email protected]>",
"Maciej Krüger <[email protected]>",
"Richard Littauer <[email protected]>",
"Sid Harder <[email protected]>",
"Stephen Whitmore <[email protected]>",
"Trond Arne Bråthen <[email protected]>",
"greenkeeper[bot] <greenkeeper[bot]@users.noreply.github.com>",
"npm-to-cdn-bot (by Forbes Lindesay) <[email protected]>"
]
}