forked from multiformats/js-multiaddr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.62 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
{
"name": "multiaddr",
"version": "8.0.0",
"description": "multiaddr implementation (binary + string representation of network addresses)",
"leadMaintainer": "Jacob Heun <[email protected]>",
"main": "src/index.js",
"types": "src/index.d.ts",
"scripts": {
"lint": "aegir lint",
"test": "npm run test:node && npm run test:browser",
"test:node": "aegir test --ts -t node",
"test:browser": "aegir test -t browser",
"test:types": "npx tsc",
"build": "aegir build",
"release": "aegir release",
"release-minor": "aegir release --type minor",
"release-major": "aegir release --type major",
"docs": "aegir docs",
"size": "aegir build -b"
},
"files": [
"src",
"dist"
],
"repository": "github:multiformats/js-multiaddr",
"keywords": [
"multiaddr",
"binary",
"string"
],
"license": "MIT",
"bugs": "https://github.com/multiformats/js-multiaddr/issues",
"homepage": "https://github.com/multiformats/js-multiaddr",
"dependencies": {
"cids": "^1.0.0",
"class-is": "^1.1.0",
"is-ip": "^3.1.0",
"multibase": "^3.0.0",
"uint8arrays": "^1.1.0",
"varint": "^5.0.0"
},
"devDependencies": {
"@types/chai": "^4.2.8",
"@types/dirty-chai": "^2.0.2",
"@types/mocha": "^8.0.1",
"@types/node": "^14.0.11",
"aegir": "^26.0.0",
"typescript": "^3.9.5"
},
"contributors": [
"David Dias <[email protected]>",
"Jacob Heun <[email protected]>",
"victorbjelkholm <[email protected]>",
"Juan Batiz-Benet <[email protected]>",
"Volker Mische <[email protected]>",
"Hugo Dias <[email protected]>",
"Friedel Ziegelmayer <[email protected]>",
"Dmitriy Ryajov <[email protected]>",
"Richard Littauer <[email protected]>",
"Robert Kiel <[email protected]>",
"Maciej Krüger <[email protected]>",
"Marcin Rataj <[email protected]>",
"Oli Evans <[email protected]>",
"Alan Shaw <[email protected]>",
"Steven Allen <[email protected]>",
"Tony Jin <[email protected]>",
"Sid Harder <[email protected]>",
"Stephen Whitmore <[email protected]>",
"Alessandro Ricottone <[email protected]>",
"Trond Arne Bråthen <[email protected]>",
"Vasco Santos <[email protected]>",
"KuhnChris <[email protected]>",
"Diogo Silva <[email protected]>",
"Yahya <[email protected]>",
"Zane Starr <[email protected]>",
"Ze Bateira <[email protected]>",
"Chris Anderson <[email protected]>",
"Cayman <[email protected]>",
"Linus Unnebäck <[email protected]>",
"Alex Potsides <[email protected]>"
]
}