This repository has been archived by the owner on Aug 11, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
75 lines (75 loc) · 2.21 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
{
"name": "ipld-dag-cbor",
"version": "1.0.1",
"description": "JavaScript implementation of the IPLD (InterpPlanetary Linked Data)",
"leadMaintainer": "Volker Mische <volker.mische@gmail.com>",
"main": "src/index.js",
"types": "./dist/src/index.d.ts",
"scripts": {
"prepare": "aegir build",
"test": "aegir test",
"test:browser": "aegir test --target browser",
"test:node": "aegir test --target node",
"lint": "aegir lint",
"release": "aegir release",
"release-minor": "aegir release --type minor",
"release-major": "aegir release --type major",
"build": "aegir build"
},
"pre-push": [
"lint",
"test"
],
"repository": {
"type": "git",
"url": "https://github.com/ipld/js-ipld-dag-cbor.git"
},
"keywords": [
"IPFS"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ipld/js-ipld-dag-cbor/issues"
},
"engines": {
"node": ">=6.0.0",
"npm": ">=3.0.0"
},
"homepage": "https://github.com/ipld/js-ipld-dag-cbor",
"dependencies": {
"borc": "^3.0.0",
"cids": "^1.0.0",
"interface-ipld-format": "^1.0.0",
"is-circular": "^1.0.2",
"multicodec": "^3.0.1",
"multihashing-async": "^2.0.0",
"uint8arrays": "^2.1.3"
},
"devDependencies": {
"@types/detect-node": "^2.0.0",
"aegir": "^33.1.1",
"detect-node": "^2.0.4",
"garbage": "0.0.0",
"multihashes": "^4.0.1"
},
"contributors": [
"David Dias <daviddias.p@gmail.com>",
"Volker Mische <volker.mische@gmail.com>",
"dignifiedquire <dignifiedquire@gmail.com>",
"achingbrain <alex@achingbrain.net>",
"Richard Schneider <makaretu@gmail.com>",
"wanderer <mjbecze@gmail.com>",
"Rod Vagg <rod@vagg.org>",
"Linus Unnebäck <linus@folkdatorn.se>",
"Richard Littauer <richard.littauer@gmail.com>",
"Alan Shaw <alan@tableflip.io>",
"Hugo Dias <hugomrdias@gmail.com>",
"ᴠɪᴄᴛᴏʀ ʙᴊᴇʟᴋʜᴏʟᴍ <victorbjelkholm@gmail.com>",
"Brandon Westcott <brandonwestcott@gmail.com>",
"Irakli Gozalishvili <contact@gozala.io>",
"Joel Gustafson <joelg@mit.edu>",
"Jonah Weissman <jonahrweissman@gmail.com>",
"Mikeal Rogers <mikeal.rogers@gmail.com>",
"Yusef Napora <yusef@napora.org>"
]
}