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 11
/
package.json
64 lines (64 loc) · 1.79 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
{
"name": "ipld-ethereum",
"version": "6.0.1",
"description": "JavaScript Implementation of All Ethereum IPLD formats",
"leadMaintainer": "Volker Mische <[email protected]>",
"main": "src/index.js",
"scripts": {
"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",
"coverage": "aegir coverage"
},
"pre-push": [
"lint",
"test"
],
"license": "MIT",
"dependencies": {
"buffer": "^6.0.3",
"cids": "^1.0.0",
"ethereumjs-account": "^3.0.0",
"ethereumjs-block": "^2.2.1",
"ethereumjs-tx": "^2.1.1",
"merkle-patricia-tree": "^3.0.0",
"multicodec": "^3.0.1",
"multihashes": "^4.0.2",
"multihashing-async": "^2.0.0",
"rlp": "^2.2.4"
},
"devDependencies": {
"aegir": "^33.0.0",
"assert": "^2.0.0",
"promisify-es6": "^1.0.3",
"readable-stream": "^3.6.0",
"uint8arrays": "^2.1.4",
"util": "^0.12.3"
},
"contributors": [
"Volker Mische <[email protected]>",
"kumavis <[email protected]>",
"David Dias <[email protected]>",
"achingbrain <[email protected]>",
"Richard Schneider <[email protected]>",
"ᴠɪᴄᴛᴏʀ ʙᴊᴇʟᴋʜᴏʟᴍ <[email protected]>",
"Rod Vagg <[email protected]>",
"Alan Shaw <[email protected]>"
],
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ipld/js-ipld-ethereum.git"
},
"bugs": {
"url": "https://github.com/ipld/js-ipld-ethereum/issues"
},
"homepage": "https://github.com/ipld/js-ipld-ethereum#readme"
}