-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1014 Bytes
/
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
{
"name": "use-ether-provider",
"version": "1.1.0",
"keywords": [
"ethereum",
"ethers",
"react",
"hooks",
"provider",
"metamask"
],
"description": "ethers provider inject into react component by hooks api",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/BigMurry/use-ether-provider.git"
},
"bugs": {
"url": "https://github.com/BigMurry/use-ether-provider/issues"
},
"author": "BigMurry <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"build": "npx babel src --out-dir dist",
"prepublish": "yarn build"
},
"dependencies": {
"lodash": "^4.17.15",
"prop-types": "^15.7.2"
},
"peerDependencies": {
"ethers": "^4.0.37",
"react": "^16.10.1"
},
"devDependencies": {
"@babel/cli": "^7.6.2",
"@babel/core": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.6",
"xhstandard": "^2.0.0"
}
}