forked from libp2p/js-peer-id
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.72 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
{
"name": "peer-id",
"version": "0.8.5",
"description": "IPFS Peer Id implementation in Node.js",
"main": "src/index.js",
"bin": "src/bin.js",
"scripts": {
"lint": "aegir-lint",
"build": "aegir-build",
"test": "aegir-test",
"test:node": "aegir-test node",
"test:browser": "aegir-test browser",
"release": "aegir-release",
"release-minor": "aegir-release --type minor",
"release-major": "aegir-release --type major",
"coverage": "aegir-coverage",
"coverage-publish": "aegir-coverage publish"
},
"keywords": [
"IPFS"
],
"author": "David Dias <[email protected]>",
"license": "MIT",
"pre-commit": [
"lint",
"test"
],
"engines": {
"node": ">=4.0.0",
"npm": ">=3.0.0"
},
"bugs": {
"url": "https://github.com/libp2p/js-peer-id/issues"
},
"homepage": "https://github.com/libp2p/js-peer-id",
"devDependencies": {
"aegir": "^11.0.1",
"chai": "^3.5.0",
"dirty-chai": "^1.2.2",
"pre-commit": "^1.2.2"
},
"dependencies": {
"async": "^2.2.0",
"libp2p-crypto": "git://github.com/duomarket/js-libp2p-crypto.git",
"lodash": "^4.17.4",
"multihashes": "~0.4.5"
},
"repository": {
"type": "git",
"url": "https://github.com/libp2p/js-peer-id.git"
},
"contributors": [
"David Dias <[email protected]>",
"David Dias <[email protected]>",
"Friedel Ziegelmayer <[email protected]>",
"Prashanth Chandra <[email protected]>",
"Richard Littauer <[email protected]>",
"Stephen Whitmore <[email protected]>",
"greenkeeperio-bot <[email protected]>",
"nginnever <[email protected]>",
"npmcdn-to-unpkg-bot <[email protected]>"
]
}