This repository was archived by the owner on Aug 11, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
96 lines (96 loc) · 2.94 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
92
93
94
95
96
{
"name": "ipld-dag-pb",
"version": "0.22.3",
"description": "JavaScript Implementation of the MerkleDAG Node in Protobuf.",
"leadMaintainer": "Volker Mische <volker.mische@gmail.com>",
"main": "src/index.js",
"scripts": {
"prepare": "run-s prepare:* build",
"prepare:proto": "pbjs -t static-module -w commonjs --force-number --no-verify --no-delimited --no-create --no-beautify --no-defaults --lint eslint-disable -o src/dag.js ./src/dag.proto",
"prepare:proto:types": "pbts -o src/dag.d.ts src/dag.js",
"build": "aegir build",
"test": "aegir test",
"test:browser": "aegir test --target browser",
"test:node": "aegir test --target node",
"lint": "run-s lint:*",
"lint:js": "aegir lint",
"lint:types": "aegir ts --check",
"release": "aegir release",
"release-minor": "aegir release --type minor",
"release-major": "aegir release --type major",
"coverage": "aegir coverage",
"coverage-publish": "aegir coverage publish"
},
"files": [
"src",
"dist"
],
"pre-push": [
"lint",
"test"
],
"contributors": [
"David Dias <daviddias.p@gmail.com>",
"Volker Mische <volker.mische@gmail.com>",
"Vijayee Kulkaa <vijayee.kulkaa@hushmail.com>",
"achingbrain <alex@achingbrain.net>",
"Friedel Ziegelmayer <dignifiedquire@gmail.com>",
"nginnever <ginneversource@gmail.com>",
"Irakli Gozalishvili <contact@gozala.io>",
"Hugo Dias <hugomrdias@gmail.com>",
"Richard Schneider <makaretu@gmail.com>",
"Diogo Silva <fsdiogo@gmail.com>",
"Stephen Whitmore <stephen.whitmore@gmail.com>",
"Richard Littauer <richard.littauer@gmail.com>",
"Matteo Collina <hello@matteocollina.com>",
"Mitar <mitar.github@tnode.com>",
"James Halliday <mail@substack.net>",
"Chris Joel <cdata@google.com>",
"ᴠɪᴄᴛᴏʀ ʙᴊᴇʟᴋʜᴏʟᴍ <victorbjelkholm@gmail.com>",
"Alan Shaw <alan@tableflip.io>",
"Oli Evans <oli@tableflip.io>",
"Rod Vagg <rod@vagg.org>",
"Ryan Bell <ryan@piing.net>",
"Stanisław Drozd <drozdziak1@gmail.com>",
"Yahya <ya7yaz@gmail.com>",
"dmitriy ryajov <dryajov@dmitriys-MacBook-Pro.local>",
"dryajov <dryajov@gmail.com>",
"haad <haad@headbanggames.com>",
"popmanhe <neo_temp@hotmail.com>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ipld/js-ipld-dag-pb.git"
},
"engines": {
"node": ">=6.0.0",
"npm": ">=3.0.0"
},
"dependencies": {
"cids": "^1.0.0",
"interface-ipld-format": "^1.0.0",
"multicodec": "^3.0.1",
"multihashing-async": "^2.0.0",
"protobufjs": "^6.10.2",
"stable": "^0.1.8",
"uint8arrays": "^2.0.5"
},
"devDependencies": {
"aegir": "^33.0.0",
"multibase": "^4.0.1",
"npm-run-all": "^4.1.5"
},
"types": "dist/src/index.d.ts",
"typesVersions": {
"*": {
"src/*": [
"dist/src/*",
"dist/src/*/index"
],
"src/": [
"dist/src/index"
]
}
}
}