react-web3-network-status
Version:
Simple and subtle Ethereum network status indicator inspired by MetaMask. 🌐🔌
99 lines (98 loc) • 2.63 kB
JSON
{
"name": "react-web3-network-status",
"version": "1.0.0",
"description": "Simple and subtle Ethereum network status indicator inspired by MetaMask. 🌐🔌",
"main": "lib/index.js",
"scripts": {
"prepublish": "npm run clean && npm run build",
"clean": "rimraf lib",
"build": "webpack --config ./webpack/webpack.config.babel.js",
"demo": "webpack-dev-server -d --config ./webpack/webpack.server.babel.js",
"lint": "standard | snazzy",
"test": "jest",
"coverage": "jest --coverage",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"pre-commit": [
"lint"
],
"repository": {
"type": "git",
"url": "git+https://github.com/rongierlach/react-web3-network-status.git"
},
"keywords": [
"react",
"web3",
"network",
"testnet",
"status",
"metamask",
"kovan",
"morden",
"ropsten",
"rinkeby"
],
"author": "https://github.com/rongierlach",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/rongierlach/react-web3-network-status/issues"
},
"homepage": "https://github.com/rongierlach/react-web3-network-status#readme",
"dependencies": {
"bluebird": "^3.5.0",
"prop-types": "^15.5.10",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-saga": "^0.15.6"
},
"peerDependencies": {
"react": "^15.6.1",
"web3": "^0.x.x"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"babel-jest": "^21.0.0",
"babel-loader": "^7.1.2",
"babel-plugin-react-flow-props-to-prop-types": "^0.15.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.26.0",
"babel-runtime": "^6.26.0",
"coveralls": "^2.13.1",
"css-loader": "^0.28.7",
"enzyme": "^2.9.1",
"file-loader": "^0.11.2",
"jest": "^21.0.1",
"prop-types-extra": "^1.0.1",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-hot-loader": "^1.3.1",
"rimraf": "^2.6.1",
"snazzy": "^7.0.0",
"standard": "^10.0.3",
"standard-loader": "^6.0.1",
"style-loader": "^0.18.2",
"styled-jsx": "^1.0.10",
"tachyons": "^4.8.1",
"web3": "^0.x.x",
"webpack": "^3.5.6",
"webpack-dev-server": "^2.7.1",
"webpack-make-rule": "^2.0.0"
},
"standard": {
"parser": "babel-eslint",
"globals": [
"it",
"expect",
"describe"
]
},
"jest": {
"verbose": true,
"coverageDirectory": "coverage"
}
}