-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
60 lines (60 loc) · 1.61 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
{
"name": "@vulcanize/dag-eth",
"version": "1.0.2",
"description": "Typescript implementations of the Ethereum DAG for IPLD",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"test": "mocha -r ts-node/register 'test/**/*.ts'",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vulcanize/ts-dag-eth.git"
},
"keywords": [
"IPLD",
"Ethereum",
"Javascript",
"Typescript",
"Multiformats"
],
"author": "Vulcanize",
"license": "(Apache-2.0 AND MIT)",
"bugs": {
"url": "https://github.com/vulcanize/ts-dag-eth/issues"
},
"homepage": "https://github.com/vulcanize/ts-dag-eth#readme",
"dependencies": {
"@ethereumjs/block": "^3.4.0",
"@ethereumjs/tx": "^3.3.0",
"bn.js": "^5.1.2",
"ethereumjs-block": "^2.2.2",
"ethereumjs-util": "^7.1.0",
"merkle-patricia-tree": "^4.2.1",
"multicodec": "^3.2.1",
"multiformats": "^9.4.6",
"web3-core": "^1.5.2",
"web3-eth": "^1.5.2",
"web3-utils": "^1.5.2"
},
"devDependencies": {
"@types/chai": "^4.2.21",
"@types/chai-subset": "^1.3.3",
"@types/mocha": "^9.1.1",
"@types/node": "^18.11.7",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"chai": "^4.3.4",
"chai-subset": "^1.6.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"mocha": "^10.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}