forked from BitskiCo/provider-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.46 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
{
"name": "@two-point-five/provider-engine",
"version": "0.1.0",
"description": "A JavaScript library for composing Ethereum provider objects using middleware modules.",
"repository": "https://github.com/two-point-five/provider-engine",
"main": "dist/commonjs/index.js",
"module": "dist/modules/index.js",
"types": "dist/modules/index.d.ts",
"scripts": {
"test": "ts-node node_modules/tape/bin/tape test/index.ts",
"prepublish": "npm run build",
"build": "tsc && tsc -p tsconfig.module.json",
"lint": "eslint --ignore-path .gitignore --fix ."
},
"author": "",
"license": "MIT",
"dependencies": {
"async": "^3.2.4",
"bn.js": "^4.11.8",
"clone": "^2.0.0",
"eth-block-tracker": "^4.4.2",
"eth-json-rpc-filters": "^4.2.1",
"eth-json-rpc-middleware": "^6.0.0",
"ethjs-util": "^0.1.6",
"json-rpc-engine": "^5.4.0",
"json-rpc-error": "^2.0.0",
"json-stable-stringify": "^1.0.1",
"promise-to-callback": "^1.0.0",
"xtend": "^4.0.2"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@types/clone": "^2.1.1",
"@types/events": "^3.0.0",
"@types/node": "^12.0.2",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"babelify": "^10.0.0",
"browserify": "^16.5.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.3.0",
"tape": "^4.4.0",
"ts-node": "^8.1.0",
"typescript": "^4.9.3"
}
}