-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.14 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
{
"name": "react-web3-provider",
"version": "1.1.2",
"description": "Higher-order component (HOC) providing web3 context to React app",
"main": "./dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "babel src --presets babel-preset-es2015 --out-dir dist",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/petertulala/react-web3-provider.git"
},
"keywords": [
"ethereum",
"web3",
"infura",
"MetaMask",
"hoc",
"provider",
"lightwallet"
],
"author": "Peter Tulala <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/petertulala/react-web3-provider/issues"
},
"homepage": "https://github.com/petertulala/react-web3-provider#readme",
"dependencies": {
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-react": "^6.24.1",
"hoist-non-react-statics": "^3.0.1",
"prop-types": "^15.6.2",
"react": "^16.0.0",
"web3": "^1.0.0-beta.35"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1"
}
}