forked from MetaMask/eth-block-tracker
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.61 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.61 KB
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": "eth-block-tracker",
"version": "5.0.1",
"description": "A block tracker for the Ethereum blockchain. Keeps track of the latest block.",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"lint": "eslint . --ext ts,js,json",
"lint:fix": "yarn lint --fix",
"build": "tsc --project .",
"test": "yarn build && node test/index.js",
"prepublishOnly": "yarn lint && yarn test"
},
"license": "MIT",
"resolutions": {
"ganache-core/**/elliptic": "^6.5.3",
"ganache-core/lodash": "^4.17.19"
},
"dependencies": {
"@metamask/safe-event-emitter": "^2.0.0",
"json-rpc-random-id": "^1.0.1",
"pify": "^3.0.0"
},
"devDependencies": {
"@metamask/eslint-config": "^5.0.0",
"@types/json-rpc-random-id": "^1.0.0",
"@types/pify": "^5.0.0",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"eslint": "^7.18.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-json": "^2.1.2",
"eslint-plugin-node": "^11.1.0",
"ganache-core": "^2.7.0",
"json-rpc-engine": "^6.1.0",
"tape": "^4.9.0",
"typescript": "^4.1.3"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MetaMask/eth-block-tracker.git"
},
"bugs": {
"url": "https://github.com/MetaMask/eth-block-tracker/issues"
},
"homepage": "https://github.com/MetaMask/eth-block-tracker#readme"
}