forked from michaeltout/ethersjs-providers-package
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.8 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
{
"author": "Richard Moore <[email protected]>",
"browser": {
"./lib/ipc-provider": "./lib/browser-ipc-provider.js",
"net": "./lib/browser-net.js",
"ws": "./lib/browser-ws.js"
},
"browser.esm": {
"./lib.esm/ipc-provider": "./lib.esm/browser-ipc-provider.js",
"net": "./lib.esm/browser-net.js",
"ws": "./lib/browser-ws.js"
},
"browser.umd": {
"./lib/ipc-provider": "./lib/browser-ipc-provider.js",
"net": "./lib/browser-net.js",
"ws": "./lib/browser-ws.js"
},
"dependencies": {
"@ethersproject/abstract-provider": "^5.0.0",
"@ethersproject/abstract-signer": "^5.0.0",
"@ethersproject/address": "^5.0.0",
"@ethersproject/bignumber": "^5.0.0",
"@ethersproject/bytes": "^5.0.0",
"@ethersproject/constants": "^5.0.0",
"@ethersproject/hash": "^5.0.0",
"@ethersproject/logger": "^5.0.0",
"@ethersproject/networks": "^5.0.0",
"@ethersproject/properties": "^5.0.0",
"@ethersproject/random": "^5.0.0",
"@ethersproject/rlp": "^5.0.0",
"@ethersproject/strings": "^5.0.0",
"@ethersproject/transactions": "^5.0.0",
"@ethersproject/web": "^5.0.0",
"ws": "7.2.3"
},
"description": "Ethereum Providers for ethers.",
"devDependencies": {
"@types/node": "^12.7.4"
},
"ethereum": "donations.ethers.eth",
"keywords": [
"Ethereum",
"ethers"
],
"license": "MIT",
"main": "./lib/index.js",
"module": "./lib.esm/index.js",
"name": "@ethersproject/providers",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git://github.com/ethers-io/ethers.js.git"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"tarballHash": "0x4037514c8693061300f9e72c0dc441786b640e3de69ef48dc7ff61467260d361",
"types": "./lib/index.d.ts",
"version": "5.0.5"
}