This repository has been archived by the owner on Dec 3, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.64 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
{
"name": "ultralight",
"version": "0.0.1",
"description": "Typescript Ethereum Portal Client",
"main": "lib/index.js",
"files": [
"bin",
"lib"
],
"bin": {
"ultralight": "./bin/ultralight"
},
"scripts": {
"check-types": "tsc --noEmit",
"build": "tsc --declaration --outDir lib",
"lint": "eslint --color --ext .ts src/",
"test": "mocha -r ts-node/register 'test/**/*.test.ts'",
"init": "ts-node src/index.ts init",
"dev": "ts-node src/index.ts --run"
},
"pre-push": [
"lint"
],
"repository": {
"type": "git",
"url": "git+https://github.com/acolytec3/ultralight.git"
},
"keywords": [
"discovery",
"discv5",
"ethereum",
"p2p"
],
"author": "acolytec3",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/acolytec3/ultralight/issues"
},
"homepage": "https://github.com/acolytec3/ultralight/#readme",
"devDependencies": {
"@types/chai": "^4.2.0",
"@types/debug": "^4.1.5",
"@types/eslint": "^6.1.3",
"@types/mocha": "^5.2.7",
"@types/node": "^12.0.10",
"@types/randombytes": "^2.0.0",
"@types/yargs": "^15.0.4",
"@typescript-eslint/eslint-plugin": "^2.7.0",
"@typescript-eslint/parser": "^2.7.0",
"chai": "^4.2.0",
"eslint": "^6.6.0",
"karma": "^4.3.0",
"mocha": "^6.2.0",
"nyc": "^14.1.1",
"ts-node": "^8.3.0",
"typescript": "^3.7.2"
},
"dependencies": {
"@chainsafe/discv5": "^0.6.1",
"axios": "^0.21.1",
"debug": "^4.1.1",
"ethers": "^5.4.1",
"jayson": "^3.6.4",
"multiaddr": "^9.0.0",
"peer-id": "^0.14.1",
"randombytes": "^2.1.0",
"yargs": "^15.3.1"
}
}