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 20
/
package.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 <[email protected]>",
"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 <[email protected]>",
"Volker Mische <[email protected]>",
"Vijayee Kulkaa <[email protected]>",
"achingbrain <[email protected]>",
"Friedel Ziegelmayer <[email protected]>",
"nginnever <[email protected]>",
"Irakli Gozalishvili <[email protected]>",
"Hugo Dias <[email protected]>",
"Richard Schneider <[email protected]>",
"Diogo Silva <[email protected]>",
"Stephen Whitmore <[email protected]>",
"Richard Littauer <[email protected]>",
"Matteo Collina <[email protected]>",
"Mitar <[email protected]>",
"James Halliday <[email protected]>",
"Chris Joel <[email protected]>",
"ᴠɪᴄᴛᴏʀ ʙᴊᴇʟᴋʜᴏʟᴍ <[email protected]>",
"Alan Shaw <[email protected]>",
"Oli Evans <[email protected]>",
"Rod Vagg <[email protected]>",
"Ryan Bell <[email protected]>",
"Stanisław Drozd <[email protected]>",
"Yahya <[email protected]>",
"dmitriy ryajov <[email protected]>",
"dryajov <[email protected]>",
"haad <[email protected]>",
"popmanhe <[email protected]>"
],
"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"
]
}
}
}