-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
91 lines (91 loc) · 3 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
{
"name": "peer-id",
"version": "0.16.0",
"description": "IPFS Peer Id implementation in Node.js",
"leadMaintainer": "Vasco Santos <[email protected]>",
"main": "src/index.js",
"types": "src/index.d.ts",
"scripts": {
"lint": "aegir lint",
"prepare": "npm run build --types false",
"build": "npm run build:proto && npm run build:proto-types && aegir build --types false",
"build:proto": "pbjs -t static-module -w commonjs -r libp2p-peer-id --force-number --no-verify --no-delimited --no-create --no-beautify --no-defaults --lint eslint-disable -o src/proto.js ./src/proto.proto",
"build:proto-types": "pbts -o src/proto.d.ts src/proto.js",
"test": "aegir test",
"test:node": "aegir test -t node",
"test:browser": "aegir test -t browser -t webworker",
"test:types": "npx tsc",
"release": "aegir release --no-types",
"release-minor": "aegir release --type minor",
"release-major": "aegir release --type major",
"coverage": "aegir coverage",
"size": "aegir build -b"
},
"files": [
"src",
"dist"
],
"keywords": [
"IPFS"
],
"license": "MIT",
"engines": {
"node": ">=15.0.0"
},
"bugs": {
"url": "https://github.com/libp2p/js-peer-id/issues"
},
"homepage": "https://github.com/libp2p/js-peer-id",
"devDependencies": {
"aegir": "^36.0.1",
"util": "^0.12.3"
},
"dependencies": {
"class-is": "^1.1.0",
"libp2p-crypto": "^0.21.0",
"multiformats": "^9.4.5",
"protobufjs": "^6.10.2",
"uint8arrays": "^3.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/libp2p/js-peer-id.git"
},
"eslintConfig": {
"extends": "ipfs",
"ignorePatterns": [
"proto.d.ts"
]
},
"contributors": [
"David Dias <[email protected]>",
"Vasco Santos <[email protected]>",
"nginnever <[email protected]>",
"dignifiedquire <[email protected]>",
"Alex Potsides <[email protected]>",
"Jacob Heun <[email protected]>",
"Pedro Teixeira <[email protected]>",
"Stephen Whitmore <[email protected]>",
"Hugo Dias <[email protected]>",
"Maciej Krüger <[email protected]>",
"Nate Foss <[email protected]>",
"Robert Kiel <[email protected]>",
"Adam Uhlíř <[email protected]>",
"ᴠɪᴄᴛᴏʀ ʙᴊᴇʟᴋʜᴏʟᴍ <[email protected]>",
"Arve Knudsen <[email protected]>",
"Carson Farmer <[email protected]>",
"Cayman <[email protected]>",
"Christian Paul <[email protected]>",
"Henrique Dias <[email protected]>",
"Marcin Rataj <[email protected]>",
"Michael Garvin <[email protected]>",
"Prashanth Chandra <[email protected]>",
"Richard Littauer <[email protected]>",
"Richard Schneider <[email protected]>",
"Topper Bowers <[email protected]>",
"Vojtech Simetka <[email protected]>",
"Yahya <[email protected]>",
"a1300 <[email protected]>",
"acolytec3 <[email protected]>"
]
}