{
	"name": "ethjs-unit",
	"versions": {
		"0.0.1": {
			"name": "ethjs-unit",
			"version": "0.0.1",
			"description": "A simple module for handling Ethereum units (e.g. 'ether', 'wei', etc...)",
			"main": "./src/index.js",
			"scripts": {
				"start": "npm test",
				"test": "mocha src/tests/**/*.js -R spec --timeout 2000000",
				"release": "npmpub",
				"pretest": "npm run lint",
				"lint": "npm run lint:js",
				"lint:eslint": "eslint --ignore-path .gitignore",
				"lint:js": "npm run lint:eslint -- . ",
				"lint:staged": "lint-staged",
				"coveralls": "cat ./coverage/lcov/lcov.info | coveralls"
			},
			"dependencies": {
				"bignumber.js": "^3.0.1"
			},
			"keywords": [
				"ethereum",
				"encoding",
				"decoding"
			],
			"author": {
				"name": "Nick Dodson",
				"email": "thenickdodson@gmail.com"
			},
			"contributors": [
				{
					"name": "Marek Kotewicz",
					"email": "marek@ethdev.com",
					"url": "https://github.com/debris"
				},
				{
					"name": "Fabian Vogelsteller",
					"email": "fabian@ethdev.com"
				},
				{
					"name": "Marian Oancea",
					"email": "marian@ethdev.com",
					"url": "https://github.com/cubedro"
				},
				{
					"name": "Gav Wood",
					"email": "g@ethdev.com"
				},
				{
					"name": "Jeffery Wilcke",
					"email": "jeff@ethdev.com",
					"url": "https://github.com/obscuren"
				}
			],
			"repository": {
				"type": "git",
				"url": "git://github.com/silentcicero/ethjs-unit.git"
			},
			"license": "MIT",
			"devDependencies": {
				"babel-eslint": "7.1.0",
				"chai": "^3.5.0",
				"coveralls": "2.11.9",
				"eslint": "2.10.1",
				"eslint-config-airbnb": "9.0.1",
				"eslint-import-resolver-webpack": "0.2.4",
				"eslint-plugin-import": "1.8.0",
				"eslint-plugin-jsx-a11y": "1.2.0",
				"eslint-plugin-react": "5.1.1",
				"eventsource-polyfill": "0.9.6",
				"lint-staged": "1.0.1",
				"mocha": "^3.1.2",
				"pre-commit": "1.1.3",
				"web3": "^0.17.0-beta"
			},
			"babel": {
				"presets": [
					"es2015"
				],
				"plugins": [
					[
						"module-resolver",
						{
							"root": [
								"./src"
							]
						}
					]
				]
			},
			"lint-staged": {
				"lint:eslint": "*.js"
			},
			"eslintConfig": {
				"parser": "babel-eslint",
				"extends": "airbnb",
				"env": {
					"node": true,
					"mocha": true,
					"es6": true
				},
				"parserOptions": {
					"ecmaVersion": 6,
					"sourceType": "module"
				},
				"rules": {
					"import/no-unresolved": 2,
					"comma-dangle": [
						2,
						"always-multiline"
					],
					"indent": [
						2,
						2,
						{
							"SwitchCase": 1
						}
					],
					"no-console": 1,
					"max-len": 0,
					"prefer-template": 2,
					"no-use-before-define": 0,
					"newline-per-chained-call": 0,
					"arrow-body-style": [
						2,
						"as-needed"
					]
				}
			},
			"pre-commit": "lint:staged",
			"gitHead": "39e644d973dfaaf97da211ed8a0f845346ba74f5",
			"bugs": {
				"url": "https://github.com/silentcicero/ethjs-unit/issues"
			},
			"homepage": "https://github.com/silentcicero/ethjs-unit#readme",
			"_id": "ethjs-unit@0.0.1",
			"_shasum": "6cb869c8ed0236483ef36ac26f786907d01edf16",
			"_from": ".",
			"_npmVersion": "3.10.3",
			"_nodeVersion": "6.5.0",
			"_npmUser": {
				"name": "silentcicero",
				"email": "thenickdodson@gmail.com"
			},
			"dist": {
				"shasum": "6cb869c8ed0236483ef36ac26f786907d01edf16",
				"tarball": "https://registry.npmjs.org/ethjs-unit/-/ethjs-unit-0.0.1.tgz"
			},
			"maintainers": [
				{
					"name": "silentcicero",
					"email": "thenickdodson@gmail.com"
				}
			],
			"_npmOperationalInternal": {
				"host": "packages-18-east.internal.npmjs.com",
				"tmp": "tmp/ethjs-unit-0.0.1.tgz_1480279395188_0.12127316533587873"
			},
			"directories": {}
		},
		"0.0.2": {
			"name": "ethjs-unit",
			"version": "0.0.2",
			"description": "A simple module for handling Ethereum units (e.g. 'ether', 'wei', etc...)",
			"main": "./src/index.js",
			"scripts": {
				"start": "npm test",
				"test": "mocha src/tests/**/*.js -R spec --timeout 2000000",
				"release": "npmpub",
				"pretest": "npm run lint",
				"lint": "npm run lint:js",
				"lint:eslint": "eslint --ignore-path .gitignore",
				"lint:js": "npm run lint:eslint -- . ",
				"lint:staged": "lint-staged",
				"test-travis": "node ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- src/tests/**/*.js -R spec --timeout 2000000",
				"coveralls": "npm run test-travis && cat ./coverage/lcov.info | coveralls"
			},
			"engines": {
				"npm": ">=3",
				"node": ">=6.5.0"
			},
			"dependencies": {
				"bignumber.js": "3.0.1"
			},
			"devDependencies": {
				"babel-eslint": "7.1.0",
				"chai": "3.5.0",
				"coveralls": "2.11.9",
				"eslint": "2.10.1",
				"istanbul": "0.4.5",
				"eslint-config-airbnb": "9.0.1",
				"eslint-import-resolver-webpack": "0.2.4",
				"eslint-plugin-import": "1.8.0",
				"eslint-plugin-jsx-a11y": "1.2.0",
				"eslint-plugin-react": "5.1.1",
				"eventsource-polyfill": "0.9.6",
				"lint-staged": "1.0.1",
				"mocha": "3.1.2",
				"pre-commit": "1.1.3",
				"web3": "0.17.0-beta"
			},
			"keywords": [
				"ethereum",
				"encoding",
				"decoding"
			],
			"author": {
				"name": "Nick Dodson",
				"email": "thenickdodson@gmail.com"
			},
			"contributors": [
				{
					"name": "Marek Kotewicz",
					"email": "marek@ethdev.com",
					"url": "https://github.com/debris"
				},
				{
					"name": "Fabian Vogelsteller",
					"email": "fabian@ethdev.com"
				},
				{
					"name": "Marian Oancea",
					"email": "marian@ethdev.com",
					"url": "https://github.com/cubedro"
				},
				{
					"name": "Gav Wood",
					"email": "g@ethdev.com"
				},
				{
					"name": "Jeffery Wilcke",
					"email": "jeff@ethdev.com",
					"url": "https://github.com/obscuren"
				}
			],
			"repository": {
				"type": "git",
				"url": "git://github.com/ethjs/ethjs-unit.git"
			},
			"license": "MIT",
			"babel": {
				"presets": [
					"es2015"
				],
				"plugins": [
					[
						"module-resolver",
						{
							"root": [
								"./src"
							]
						}
					]
				]
			},
			"lint-staged": {
				"lint:eslint": "*.js"
			},
			"eslintConfig": {
				"parser": "babel-eslint",
				"extends": "airbnb",
				"env": {
					"node": true,
					"mocha": true,
					"es6": true
				},
				"parserOptions": {
					"ecmaVersion": 6,
					"sourceType": "module"
				},
				"rules": {
					"import/no-unresolved": 2,
					"comma-dangle": [
						2,
						"always-multiline"
					],
					"indent": [
						2,
						2,
						{
							"SwitchCase": 1
						}
					],
					"no-console": 1,
					"max-len": 0,
					"prefer-template": 2,
					"no-use-before-define": 0,
					"newline-per-chained-call": 0,
					"arrow-body-style": [
						2,
						"as-needed"
					]
				}
			},
			"pre-commit": "lint:staged",
			"gitHead": "cd1932fb0d94b636406c2e6e4c070bbdab301122",
			"bugs": {
				"url": "https://github.com/ethjs/ethjs-unit/issues"
			},
			"homepage": "https://github.com/ethjs/ethjs-unit#readme",
			"_id": "ethjs-unit@0.0.2",
			"_shasum": "5eb384fa8573a85795567d6bd046f65bfd688b2c",
			"_from": ".",
			"_npmVersion": "3.10.3",
			"_nodeVersion": "6.5.0",
			"_npmUser": {
				"name": "silentcicero",
				"email": "thenickdodson@gmail.com"
			},
			"dist": {
				"shasum": "5eb384fa8573a85795567d6bd046f65bfd688b2c",
				"tarball": "https://registry.npmjs.org/ethjs-unit/-/ethjs-unit-0.0.2.tgz"
			},
			"maintainers": [
				{
					"name": "silentcicero",
					"email": "thenickdodson@gmail.com"
				}
			],
			"_npmOperationalInternal": {
				"host": "packages-12-west.internal.npmjs.com",
				"tmp": "tmp/ethjs-unit-0.0.2.tgz_1480435049031_0.994365073973313"
			},
			"directories": {}
		},
		"0.1.0": {
			"name": "ethjs-unit",
			"version": "0.1.0",
			"description": "A simple module for handling Ethereum units (e.g. 'ether', 'wei', etc...)",
			"main": "lib/index.js",
			"browser": "dist/ethjs-sha3.js",
			"files": [
				"dist",
				"internals",
				"lib",
				"src"
			],
			"scripts": {
				"start": "npm test",
				"release": "npmpub",
				"pretest": "npm run lint",
				"prepublish": "npm run build",
				"prebuild": "npm run build:clean && npm run test",
				"build:clean": "npm run test:clean && rimraf ./dist",
				"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib --copy-files",
				"build:umd": "cross-env BABEL_ENV=commonjs NODE_ENV=development webpack --config ./internals/webpack/webpack.config.js ./lib/index.js --progress",
				"build:umd:min": "cross-env BABEL_ENV=commonjs NODE_ENV=production webpack --config ./internals/webpack/webpack.config.js ./lib/index.js --progress",
				"build": "npm run build:commonjs && npm run test:lib && npm run build:umd && npm run build:umd:min",
				"lint": "npm run lint:js",
				"lint:eslint": "eslint --ignore-path .gitignore --ignore-pattern **/**.min.js",
				"lint:js": "npm run lint:eslint -- . ",
				"lint:staged": "lint-staged",
				"test:clean": "rimraf ./coverage",
				"test": "mocha ./src/tests/**/*.js -R spec --timeout 2000000",
				"test:lib": "mocha ./lib/tests/**/*.js -R spec --timeout 2000000",
				"test-travis": "node ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- src/tests/**/*.js -R spec --timeout 2000000",
				"coveralls": "npm run test-travis && cat ./coverage/lcov.info | coveralls"
			},
			"engines": {
				"npm": ">=3",
				"node": ">=6.5.0"
			},
			"babel": {
				"plugins": [
					[
						"transform-es2015-template-literals",
						{
							"loose": true
						}
					],
					"transform-es2015-literals",
					"transform-es2015-function-name",
					"transform-es2015-arrow-functions",
					"transform-es2015-block-scoped-functions",
					[
						"transform-es2015-classes",
						{
							"loose": true
						}
					],
					"transform-es2015-object-super",
					"transform-es2015-shorthand-properties",
					[
						"transform-es2015-computed-properties",
						{
							"loose": true
						}
					],
					[
						"transform-es2015-for-of",
						{
							"loose": true
						}
					],
					"transform-es2015-sticky-regex",
					"transform-es2015-unicode-regex",
					"check-es2015-constants",
					[
						"transform-es2015-spread",
						{
							"loose": true
						}
					],
					"transform-es2015-parameters",
					[
						"transform-es2015-destructuring",
						{
							"loose": true
						}
					],
					"transform-es2015-block-scoping",
					"transform-object-rest-spread",
					"transform-es3-member-expression-literals",
					"transform-es3-property-literals"
				],
				"env": {
					"commonjs": {
						"plugins": [
							[
								"transform-es2015-modules-commonjs",
								{
									"loose": true
								}
							]
						]
					}
				}
			},
			"dependencies": {
				"bignumber.js": "3.0.1"
			},
			"devDependencies": {
				"babel-cli": "6.18.0",
				"babel-core": "6.18.2",
				"babel-loader": "6.2.8",
				"babel-plugin-check-es2015-constants": "6.8.0",
				"babel-plugin-transform-es2015-arrow-functions": "6.8.0",
				"babel-plugin-transform-es2015-block-scoped-functions": "6.8.0",
				"babel-plugin-transform-es2015-block-scoping": "6.18.0",
				"babel-plugin-transform-es2015-classes": "6.18.0",
				"babel-plugin-transform-es2015-computed-properties": "6.8.0",
				"babel-plugin-transform-es2015-destructuring": "6.19.0",
				"babel-plugin-transform-es2015-for-of": "6.18.0",
				"babel-plugin-transform-es2015-function-name": "6.9.0",
				"babel-plugin-transform-es2015-literals": "6.8.0",
				"babel-plugin-transform-es2015-modules-commonjs": "6.18.0",
				"babel-plugin-transform-es2015-object-super": "6.8.0",
				"babel-plugin-transform-es2015-parameters": "6.18.0",
				"babel-plugin-transform-es2015-shorthand-properties": "6.18.0",
				"babel-plugin-transform-es2015-spread": "6.8.0",
				"babel-plugin-transform-es2015-sticky-regex": "6.8.0",
				"babel-plugin-transform-es2015-template-literals": "6.8.0",
				"babel-plugin-transform-es2015-unicode-regex": "6.11.0",
				"babel-plugin-transform-es3-member-expression-literals": "6.5.0",
				"babel-plugin-transform-es3-property-literals": "6.5.0",
				"babel-plugin-transform-object-rest-spread": "6.19.0",
				"babel-register": "6.18.0",
				"check-es3-syntax-cli": "0.1.3",
				"webpack": "2.1.0-beta.15",
				"json-loader": "0.5.4",
				"rimraf": "2.3.4",
				"cross-env": "1.0.7",
				"babel-eslint": "7.1.0",
				"chai": "3.5.0",
				"coveralls": "2.11.9",
				"eslint": "2.10.1",
				"istanbul": "0.4.5",
				"eslint-config-airbnb": "9.0.1",
				"eslint-import-resolver-webpack": "0.2.4",
				"eslint-plugin-import": "1.8.0",
				"eslint-plugin-jsx-a11y": "1.2.0",
				"eslint-plugin-react": "5.1.1",
				"eventsource-polyfill": "0.9.6",
				"lint-staged": "1.0.1",
				"mocha": "3.1.2",
				"pre-commit": "1.1.3",
				"web3": "0.17.0-beta"
			},
			"keywords": [
				"ethereum",
				"encoding",
				"decoding"
			],
			"author": {
				"name": "Nick Dodson",
				"email": "thenickdodson@gmail.com"
			},
			"contributors": [
				{
					"name": "Marek Kotewicz",
					"email": "marek@ethdev.com",
					"url": "https://github.com/debris"
				},
				{
					"name": "Fabian Vogelsteller",
					"email": "fabian@ethdev.com"
				},
				{
					"name": "Marian Oancea",
					"email": "marian@ethdev.com",
					"url": "https://github.com/cubedro"
				},
				{
					"name": "Gav Wood",
					"email": "g@ethdev.com"
				},
				{
					"name": "Jeffery Wilcke",
					"email": "jeff@ethdev.com",
					"url": "https://github.com/obscuren"
				}
			],
			"repository": {
				"type": "git",
				"url": "git://github.com/ethjs/ethjs-unit.git"
			},
			"license": "MIT",
			"lint-staged": {
				"lint:eslint": "*.js"
			},
			"eslintConfig": {
				"parser": "babel-eslint",
				"extends": "airbnb",
				"env": {
					"node": true,
					"mocha": true,
					"es6": true
				},
				"parserOptions": {
					"ecmaVersion": 6,
					"sourceType": "module"
				},
				"rules": {
					"import/no-unresolved": 2,
					"comma-dangle": [
						2,
						"always-multiline"
					],
					"indent": [
						2,
						2,
						{
							"SwitchCase": 1
						}
					],
					"no-console": 1,
					"max-len": 0,
					"prefer-template": 2,
					"no-use-before-define": 0,
					"newline-per-chained-call": 0,
					"arrow-body-style": [
						2,
						"as-needed"
					]
				}
			},
			"pre-commit": "lint:staged",
			"gitHead": "478a8281352ea1876b787cc66dadf4d7b95d8c6f",
			"bugs": {
				"url": "https://github.com/ethjs/ethjs-unit/issues"
			},
			"homepage": "https://github.com/ethjs/ethjs-unit#readme",
			"_id": "ethjs-unit@0.1.0",
			"_shasum": "a712e3a142000b20b0813c041f17899343efacf1",
			"_from": ".",
			"_npmVersion": "3.10.3",
			"_nodeVersion": "6.5.0",
			"_npmUser": {
				"name": "silentcicero",
				"email": "thenickdodson@gmail.com"
			},
			"dist": {
				"shasum": "a712e3a142000b20b0813c041f17899343efacf1",
				"tarball": "https://registry.npmjs.org/ethjs-unit/-/ethjs-unit-0.1.0.tgz"
			},
			"maintainers": [
				{
					"name": "silentcicero",
					"email": "thenickdodson@gmail.com"
				}
			],
			"_npmOperationalInternal": {
				"host": "packages-18-east.internal.npmjs.com",
				"tmp": "tmp/ethjs-unit-0.1.0.tgz_1480903782794_0.7857671866659075"
			},
			"directories": {}
		},
		"0.1.1": {
			"name": "ethjs-unit",
			"version": "0.1.1",
			"description": "A simple module for handling Ethereum units (e.g. 'ether', 'wei', etc...)",
			"main": "lib/index.js",
			"browser": "dist/ethjs-sha3.js",
			"files": [
				"dist",
				"internals",
				"lib",
				"src"
			],
			"scripts": {
				"start": "npm test",
				"release": "npmpub",
				"pretest": "npm run lint",
				"prepublish": "npm run build",
				"prebuild": "npm run build:clean && npm run test",
				"build:clean": "npm run test:clean && rimraf ./dist",
				"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib --copy-files",
				"build:umd": "cross-env BABEL_ENV=commonjs NODE_ENV=development webpack --config ./internals/webpack/webpack.config.js ./lib/index.js --progress",
				"build:umd:min": "cross-env BABEL_ENV=commonjs NODE_ENV=production webpack --config ./internals/webpack/webpack.config.js ./lib/index.js --progress",
				"build": "npm run build:commonjs && npm run test:lib && npm run build:umd && npm run build:umd:min",
				"lint": "npm run lint:js",
				"lint:eslint": "eslint --ignore-path .gitignore --ignore-pattern **/**.min.js",
				"lint:js": "npm run lint:eslint -- . ",
				"lint:staged": "lint-staged",
				"test:clean": "rimraf ./coverage",
				"test": "mocha ./src/tests/**/*.js -R spec --timeout 2000000",
				"test:lib": "mocha ./lib/tests/**/*.js -R spec --timeout 2000000",
				"test-travis": "node ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- src/tests/**/*.js -R spec --timeout 2000000",
				"coveralls": "npm run test-travis && cat ./coverage/lcov.info | coveralls"
			},
			"engines": {
				"npm": ">=3",
				"node": ">=6.5.0"
			},
			"babel": {
				"plugins": [
					[
						"transform-es2015-template-literals",
						{
							"loose": true
						}
					],
					"transform-es2015-literals",
					"transform-es2015-function-name",
					"transform-es2015-arrow-functions",
					"transform-es2015-block-scoped-functions",
					[
						"transform-es2015-classes",
						{
							"loose": true
						}
					],
					"transform-es2015-object-super",
					"transform-es2015-shorthand-properties",
					[
						"transform-es2015-computed-properties",
						{
							"loose": true
						}
					],
					[
						"transform-es2015-for-of",
						{
							"loose": true
						}
					],
					"transform-es2015-sticky-regex",
					"transform-es2015-unicode-regex",
					"check-es2015-constants",
					[
						"transform-es2015-spread",
						{
							"loose": true
						}
					],
					"transform-es2015-parameters",
					[
						"transform-es2015-destructuring",
						{
							"loose": true
						}
					],
					"transform-es2015-block-scoping",
					"transform-object-rest-spread",
					"transform-es3-member-expression-literals",
					"transform-es3-property-literals"
				],
				"env": {
					"commonjs": {
						"plugins": [
							[
								"transform-es2015-modules-commonjs",
								{
									"loose": true
								}
							]
						]
					}
				}
			},
			"dependencies": {
				"bignumber.js": "3.0.1"
			},
			"devDependencies": {
				"babel-cli": "6.18.0",
				"babel-core": "6.18.2",
				"babel-loader": "6.2.8",
				"babel-plugin-check-es2015-constants": "6.8.0",
				"babel-plugin-transform-es2015-arrow-functions": "6.8.0",
				"babel-plugin-transform-es2015-block-scoped-functions": "6.8.0",
				"babel-plugin-transform-es2015-block-scoping": "6.18.0",
				"babel-plugin-transform-es2015-classes": "6.18.0",
				"babel-plugin-transform-es2015-computed-properties": "6.8.0",
				"babel-plugin-transform-es2015-destructuring": "6.19.0",
				"babel-plugin-transform-es2015-for-of": "6.18.0",
				"babel-plugin-transform-es2015-function-name": "6.9.0",
				"babel-plugin-transform-es2015-literals": "6.8.0",
				"babel-plugin-transform-es2015-modules-commonjs": "6.18.0",
				"babel-plugin-transform-es2015-object-super": "6.8.0",
				"babel-plugin-transform-es2015-parameters": "6.18.0",
				"babel-plugin-transform-es2015-shorthand-properties": "6.18.0",
				"babel-plugin-transform-es2015-spread": "6.8.0",
				"babel-plugin-transform-es2015-sticky-regex": "6.8.0",
				"babel-plugin-transform-es2015-template-literals": "6.8.0",
				"babel-plugin-transform-es2015-unicode-regex": "6.11.0",
				"babel-plugin-transform-es3-member-expression-literals": "6.5.0",
				"babel-plugin-transform-es3-property-literals": "6.5.0",
				"babel-plugin-transform-object-rest-spread": "6.19.0",
				"babel-register": "6.18.0",
				"check-es3-syntax-cli": "0.1.3",
				"webpack": "2.1.0-beta.15",
				"json-loader": "0.5.4",
				"rimraf": "2.3.4",
				"cross-env": "1.0.7",
				"babel-eslint": "7.1.0",
				"chai": "3.5.0",
				"coveralls": "2.11.9",
				"eslint": "2.10.1",
				"istanbul": "0.4.5",
				"eslint-config-airbnb": "9.0.1",
				"eslint-import-resolver-webpack": "0.2.4",
				"eslint-plugin-import": "1.8.0",
				"eslint-plugin-jsx-a11y": "1.2.0",
				"eslint-plugin-react": "5.1.1",
				"eventsource-polyfill": "0.9.6",
				"lint-staged": "1.0.1",
				"mocha": "3.1.2",
				"pre-commit": "1.1.3",
				"web3": "0.17.0-beta"
			},
			"keywords": [
				"ethereum",
				"encoding",
				"decoding"
			],
			"author": {
				"name": "Nick Dodson",
				"email": "thenickdodson@gmail.com"
			},
			"contributors": [
				{
					"name": "Marek Kotewicz",
					"email": "marek@ethdev.com",
					"url": "https://github.com/debris"
				},
				{
					"name": "Fabian Vogelsteller",
					"email": "fabian@ethdev.com"
				},
				{
					"name": "Marian Oancea",
					"email": "marian@ethdev.com",
					"url": "https://github.com/cubedro"
				},
				{
					"name": "Gav Wood",
					"email": "g@ethdev.com"
				},
				{
					"name": "Jeffery Wilcke",
					"email": "jeff@ethdev.com",
					"url": "https://github.com/obscuren"
				}
			],
			"repository": {
				"type": "git",
				"url": "git://github.com/ethjs/ethjs-unit.git"
			},
			"license": "MIT",
			"lint-staged": {
				"lint:eslint": "*.js"
			},
			"eslintConfig": {
				"parser": "babel-eslint",
				"extends": "airbnb",
				"env": {
					"node": true,
					"mocha": true,
					"es6": true
				},
				"parserOptions": {
					"ecmaVersion": 6,
					"sourceType": "module"
				},
				"rules": {
					"import/no-unresolved": 2,
					"comma-dangle": [
						2,
						"always-multiline"
					],
					"indent": [
						2,
						2,
						{
							"SwitchCase": 1
						}
					],
					"no-console": 1,
					"max-len": 0,
					"prefer-template": 2,
					"no-use-before-define": 0,
					"newline-per-chained-call": 0,
					"arrow-body-style": [
						2,
						"as-needed"
					]
				}
			},
			"pre-commit": "lint:staged",
			"gitHead": "ac370cbe7dc28299b097b2b17b6a10e72a725f88",
			"bugs": {
				"url": "https://github.com/ethjs/ethjs-unit/issues"
			},
			"homepage": "https://github.com/ethjs/ethjs-unit#readme",
			"_id": "ethjs-unit@0.1.1",
			"_shasum": "4d8fedb2d93296233d04a747a26a477688616ec1",
			"_from": ".",
			"_npmVersion": "3.10.3",
			"_nodeVersion": "6.5.0",
			"_npmUser": {
				"name": "silentcicero",
				"email": "thenickdodson@gmail.com"
			},
			"dist": {
				"shasum": "4d8fedb2d93296233d04a747a26a477688616ec1",
				"tarball": "https://registry.npmjs.org/ethjs-unit/-/ethjs-unit-0.1.1.tgz"
			},
			"maintainers": [
				{
					"name": "silentcicero",
					"email": "thenickdodson@gmail.com"
				}
			],
			"_npmOperationalInternal": {
				"host": "packages-18-east.internal.npmjs.com",
				"tmp": "tmp/ethjs-unit-0.1.1.tgz_1480915779605_0.9528887066990137"
			},
			"directories": {}
		},
		"0.1.3": {
			"name": "ethjs-unit",
			"version": "0.1.3",
			"description": "A simple module for handling Ethereum units (e.g. 'ether', 'wei', etc...)",
			"main": "lib/index.js",
			"files": [
				"dist",
				"internals",
				"lib",
				"src"
			],
			"scripts": {
				"start": "npm test",
				"release": "npmpub",
				"pretest": "npm run lint",
				"prepublish": "npm run build",
				"prebuild": "npm run build:clean && npm run test",
				"build:clean": "npm run test:clean && rimraf ./dist",
				"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib --copy-files",
				"build:umd": "cross-env BABEL_ENV=commonjs NODE_ENV=development webpack --config ./internals/webpack/webpack.config.js ./lib/index.js --progress",
				"build:umd:min": "cross-env BABEL_ENV=commonjs NODE_ENV=production webpack --config ./internals/webpack/webpack.config.js ./lib/index.js --progress",
				"build": "npm run build:commonjs && npm run test:lib && npm run build:umd && npm run build:umd:min",
				"lint": "npm run lint:js",
				"lint:eslint": "eslint --ignore-path .gitignore --ignore-pattern **/**.min.js",
				"lint:js": "npm run lint:eslint -- . ",
				"lint:staged": "lint-staged",
				"test:clean": "rimraf ./coverage",
				"test": "mocha ./src/tests/**/*.js -R spec --timeout 2000000",
				"test:lib": "mocha ./lib/tests/**/*.js -R spec --timeout 2000000",
				"test-travis": "node ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- src/tests/**/*.js -R spec --timeout 2000000",
				"coveralls": "npm run test-travis && cat ./coverage/lcov.info | coveralls"
			},
			"engines": {
				"npm": ">=3",
				"node": ">=6.5.0"
			},
			"babel": {
				"plugins": [
					[
						"transform-es2015-template-literals",
						{
							"loose": true
						}
					],
					"transform-es2015-literals",
					"transform-es2015-function-name",
					"transform-es2015-arrow-functions",
					"transform-es2015-block-scoped-functions",
					[
						"transform-es2015-classes",
						{
							"loose": true
						}
					],
					"transform-es2015-object-super",
					"transform-es2015-shorthand-properties",
					[
						"transform-es2015-computed-properties",
						{
							"loose": true
						}
					],
					[
						"transform-es2015-for-of",
						{
							"loose": true
						}
					],
					"transform-es2015-sticky-regex",
					"transform-es2015-unicode-regex",
					"check-es2015-constants",
					[
						"transform-es2015-spread",
						{
							"loose": true
						}
					],
					"transform-es2015-parameters",
					[
						"transform-es2015-destructuring",
						{
							"loose": true
						}
					],
					"transform-es2015-block-scoping",
					"transform-object-rest-spread",
					"transform-es3-member-expression-literals",
					"transform-es3-property-literals"
				],
				"env": {
					"commonjs": {
						"plugins": [
							[
								"transform-es2015-modules-commonjs",
								{
									"loose": true
								}
							]
						]
					}
				}
			},
			"dependencies": {
				"bn.js": "4.11.6",
				"number-to-bn": "1.2.0"
			},
			"devDependencies": {
				"bignumber.js": "3.0.1",
				"babel-cli": "6.18.0",
				"babel-core": "6.18.2",
				"babel-loader": "6.2.8",
				"babel-plugin-check-es2015-constants": "6.8.0",
				"babel-plugin-transform-es2015-arrow-functions": "6.8.0",
				"babel-plugin-transform-es2015-block-scoped-functions": "6.8.0",
				"babel-plugin-transform-es2015-block-scoping": "6.18.0",
				"babel-plugin-transform-es2015-classes": "6.18.0",
				"babel-plugin-transform-es2015-computed-properties": "6.8.0",
				"babel-plugin-transform-es2015-destructuring": "6.19.0",
				"babel-plugin-transform-es2015-for-of": "6.18.0",
				"babel-plugin-transform-es2015-function-name": "6.9.0",
				"babel-plugin-transform-es2015-literals": "6.8.0",
				"babel-plugin-transform-es2015-modules-commonjs": "6.18.0",
				"babel-plugin-transform-es2015-object-super": "6.8.0",
				"babel-plugin-transform-es2015-parameters": "6.18.0",
				"babel-plugin-transform-es2015-shorthand-properties": "6.18.0",
				"babel-plugin-transform-es2015-spread": "6.8.0",
				"babel-plugin-transform-es2015-sticky-regex": "6.8.0",
				"babel-plugin-transform-es2015-template-literals": "6.8.0",
				"babel-plugin-transform-es2015-unicode-regex": "6.11.0",
				"babel-plugin-transform-es3-member-expression-literals": "6.5.0",
				"babel-plugin-transform-es3-property-literals": "6.5.0",
				"babel-plugin-transform-object-rest-spread": "6.19.0",
				"babel-register": "6.18.0",
				"check-es3-syntax-cli": "0.1.3",
				"webpack": "2.1.0-beta.15",
				"json-loader": "0.5.4",
				"rimraf": "2.3.4",
				"cross-env": "1.0.7",
				"babel-eslint": "7.1.0",
				"chai": "3.5.0",
				"coveralls": "2.11.9",
				"eslint": "2.10.1",
				"istanbul": "0.4.5",
				"eslint-config-airbnb": "9.0.1",
				"eslint-import-resolver-webpack": "0.2.4",
				"eslint-plugin-import": "1.8.0",
				"eslint-plugin-jsx-a11y": "1.2.0",
				"eslint-plugin-react": "5.1.1",
				"eventsource-polyfill": "0.9.6",
				"lint-staged": "1.0.1",
				"mocha": "3.1.2",
				"pre-commit": "1.1.3",
				"web3": "0.17.0-beta"
			},
			"keywords": [
				"ethereum",
				"encoding",
				"decoding"
			],
			"author": {
				"name": "Nick Dodson",
				"email": "thenickdodson@gmail.com"
			},
			"contributors": [
				{
					"name": "Richard Moore",
					"email": "me@ricmoo.com",
					"url": "https://ethers.io"
				},
				{
					"name": "Marek Kotewicz",
					"email": "marek@ethdev.com",
					"url": "https://github.com/debris"
				},
				{
					"name": "Fabian Vogelsteller",
					"email": "fabian@ethdev.com"
				},
				{
					"name": "Marian Oancea",
					"email": "marian@ethdev.com",
					"url": "https://github.com/cubedro"
				},
				{
					"name": "Gav Wood",
					"email": "g@ethdev.com"
				},
				{
					"name": "Jeffery Wilcke",
					"email": "jeff@ethdev.com",
					"url": "https://github.com/obscuren"
				}
			],
			"repository": {
				"type": "git",
				"url": "git://github.com/ethjs/ethjs-unit.git"
			},
			"license": "MIT",
			"lint-staged": {
				"lint:eslint": "*.js"
			},
			"eslintConfig": {
				"parser": "babel-eslint",
				"extends": "airbnb",
				"env": {
					"node": true,
					"mocha": true,
					"es6": true
				},
				"parserOptions": {
					"ecmaVersion": 6,
					"sourceType": "module"
				},
				"rules": {
					"import/no-unresolved": 2,
					"comma-dangle": [
						2,
						"always-multiline"
					],
					"indent": [
						2,
						2,
						{
							"SwitchCase": 1
						}
					],
					"no-console": 1,
					"max-len": 0,
					"prefer-template": 2,
					"no-use-before-define": 0,
					"newline-per-chained-call": 0,
					"arrow-body-style": [
						2,
						"as-needed"
					]
				}
			},
			"pre-commit": "build",
			"gitHead": "ca0fd99588c7bae2f32507e742d201da000c4904",
			"bugs": {
				"url": "https://github.com/ethjs/ethjs-unit/issues"
			},
			"homepage": "https://github.com/ethjs/ethjs-unit#readme",
			"_id": "ethjs-unit@0.1.3",
			"_shasum": "ece2b8c2c4b515592997cbf670cb66dd693f92ba",
			"_from": ".",
			"_npmVersion": "3.10.3",
			"_nodeVersion": "6.5.0",
			"_npmUser": {
				"name": "silentcicero",
				"email": "thenickdodson@gmail.com"
			},
			"dist": {
				"shasum": "ece2b8c2c4b515592997cbf670cb66dd693f92ba",
				"tarball": "https://registry.npmjs.org/ethjs-unit/-/ethjs-unit-0.1.3.tgz"
			},
			"maintainers": [
				{
					"name": "silentcicero",
					"email": "thenickdodson@gmail.com"
				}
			],
			"_npmOperationalInternal": {
				"host": "packages-18-east.internal.npmjs.com",
				"tmp": "tmp/ethjs-unit-0.1.3.tgz_1481261725097_0.40586136165075004"
			},
			"directories": {}
		},
		"0.1.4": {
			"name": "ethjs-unit",
			"version": "0.1.4",
			"description": "A simple module for handling Ethereum units (e.g. 'ether', 'wei', etc...)",
			"main": "lib/index.js",
			"files": [
				"dist",
				"internals",
				"lib",
				"src"
			],
			"scripts": {
				"start": "npm test",
				"release": "npmpub",
				"pretest": "npm run lint",
				"prepublish": "npm run build",
				"prebuild": "npm run build:clean && npm run test",
				"build:clean": "npm run test:clean && rimraf ./dist",
				"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib --copy-files",
				"build:umd": "cross-env BABEL_ENV=commonjs NODE_ENV=development webpack --config ./internals/webpack/webpack.config.js ./lib/index.js --progress",
				"build:umd:min": "cross-env BABEL_ENV=commonjs NODE_ENV=production webpack --config ./internals/webpack/webpack.config.js ./lib/index.js --progress",
				"build": "npm run build:commonjs && npm run test:lib && npm run build:umd && npm run build:umd:min",
				"lint": "npm run lint:js",
				"lint:eslint": "eslint --ignore-path .gitignore --ignore-pattern **/**.min.js",
				"lint:js": "npm run lint:eslint -- . ",
				"lint:staged": "lint-staged",
				"test:clean": "rimraf ./coverage",
				"test": "mocha ./src/tests/**/*.js -R spec --timeout 2000000",
				"test:lib": "mocha ./lib/tests/**/*.js -R spec --timeout 2000000",
				"test-travis": "node ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- src/tests/**/*.js -R spec --timeout 2000000",
				"coveralls": "npm run test-travis && cat ./coverage/lcov.info | coveralls"
			},
			"engines": {
				"npm": ">=3",
				"node": ">=6.5.0"
			},
			"babel": {
				"plugins": [
					[
						"transform-es2015-template-literals",
						{
							"loose": true
						}
					],
					"transform-es2015-literals",
					"transform-es2015-function-name",
					"transform-es2015-arrow-functions",
					"transform-es2015-block-scoped-functions",
					[
						"transform-es2015-classes",
						{
							"loose": true
						}
					],
					"transform-es2015-object-super",
					"transform-es2015-shorthand-properties",
					[
						"transform-es2015-computed-properties",
						{
							"loose": true
						}
					],
					[
						"transform-es2015-for-of",
						{
							"loose": true
						}
					],
					"transform-es2015-sticky-regex",
					"transform-es2015-unicode-regex",
					"check-es2015-constants",
					[
						"transform-es2015-spread",
						{
							"loose": true
						}
					],
					"transform-es2015-parameters",
					[
						"transform-es2015-destructuring",
						{
							"loose": true
						}
					],
					"transform-es2015-block-scoping",
					"transform-object-rest-spread",
					"transform-es3-member-expression-literals",
					"transform-es3-property-literals"
				],
				"env": {
					"commonjs": {
						"plugins": [
							[
								"transform-es2015-modules-commonjs",
								{
									"loose": true
								}
							]
						]
					}
				}
			},
			"dependencies": {
				"bn.js": "4.11.6",
				"number-to-bn": "1.4.0"
			},
			"devDependencies": {
				"bignumber.js": "3.0.1",
				"babel-cli": "6.18.0",
				"babel-core": "6.18.2",
				"babel-loader": "6.2.8",
				"babel-plugin-check-es2015-constants": "6.8.0",
				"babel-plugin-transform-es2015-arrow-functions": "6.8.0",
				"babel-plugin-transform-es2015-block-scoped-functions": "6.8.0",
				"babel-plugin-transform-es2015-block-scoping": "6.18.0",
				"babel-plugin-transform-es2015-classes": "6.18.0",
				"babel-plugin-transform-es2015-computed-properties": "6.8.0",
				"babel-plugin-transform-es2015-destructuring": "6.19.0",
				"babel-plugin-transform-es2015-for-of": "6.18.0",
				"babel-plugin-transform-es2015-function-name": "6.9.0",
				"babel-plugin-transform-es2015-literals": "6.8.0",
				"babel-plugin-transform-es2015-modules-commonjs": "6.18.0",
				"babel-plugin-transform-es2015-object-super": "6.8.0",
				"babel-plugin-transform-es2015-parameters": "6.18.0",
				"babel-plugin-transform-es2015-shorthand-properties": "6.18.0",
				"babel-plugin-transform-es2015-spread": "6.8.0",
				"babel-plugin-transform-es2015-sticky-regex": "6.8.0",
				"babel-plugin-transform-es2015-template-literals": "6.8.0",
				"babel-plugin-transform-es2015-unicode-regex": "6.11.0",
				"babel-plugin-transform-es3-member-expression-literals": "6.5.0",
				"babel-plugin-transform-es3-property-literals": "6.5.0",
				"babel-plugin-transform-object-rest-spread": "6.19.0",
				"babel-register": "6.18.0",
				"check-es3-syntax-cli": "0.1.3",
				"webpack": "2.1.0-beta.15",
				"json-loader": "0.5.4",
				"rimraf": "2.3.4",
				"cross-env": "1.0.7",
				"babel-eslint": "7.1.0",
				"chai": "3.5.0",
				"coveralls": "2.11.9",
				"eslint": "2.10.1",
				"istanbul": "0.4.5",
				"eslint-config-airbnb": "9.0.1",
				"eslint-import-resolver-webpack": "0.2.4",
				"eslint-plugin-import": "1.8.0",
				"eslint-plugin-jsx-a11y": "1.2.0",
				"eslint-plugin-react": "5.1.1",
				"eventsource-polyfill": "0.9.6",
				"lint-staged": "1.0.1",
				"mocha": "3.1.2",
				"pre-commit": "1.1.3",
				"web3": "0.17.0-beta"
			},
			"keywords": [
				"ethereum",
				"encoding",
				"decoding"
			],
			"author": {
				"name": "Nick Dodson",
				"email": "thenickdodson@gmail.com"
			},
			"contributors": [
				{
					"name": "Richard Moore",
					"email": "me@ricmoo.com",
					"url": "https://ethers.io"
				},
				{
					"name": "Marek Kotewicz",
					"email": "marek@ethdev.com",
					"url": "https://github.com/debris"
				},
				{
					"name": "Fabian Vogelsteller",
					"email": "fabian@ethdev.com"
				},
				{
					"name": "Marian Oancea",
					"email": "marian@ethdev.com",
					"url": "https://github.com/cubedro"
				},
				{
					"name": "Gav Wood",
					"email": "g@ethdev.com"
				},
				{
					"name": "Jeffery Wilcke",
					"email": "jeff@ethdev.com",
					"url": "https://github.com/obscuren"
				}
			],
			"repository": {
				"type": "git",
				"url": "git://github.com/ethjs/ethjs-unit.git"
			},
			"license": "MIT",
			"lint-staged": {
				"lint:eslint": "*.js"
			},
			"eslintConfig": {
				"parser": "babel-eslint",
				"extends": "airbnb",
				"env": {
					"node": true,
					"mocha": true,
					"es6": true
				},
				"parserOptions": {
					"ecmaVersion": 6,
					"sourceType": "module"
				},
				"rules": {
					"import/no-unresolved": 2,
					"comma-dangle": [
						2,
						"always-multiline"
					],
					"indent": [
						2,
						2,
						{
							"SwitchCase": 1
						}
					],
					"no-console": 1,
					"max-len": 0,
					"prefer-template": 2,
					"no-use-before-define": 0,
					"newline-per-chained-call": 0,
					"arrow-body-style": [
						2,
						"as-needed"
					]
				}
			},
			"pre-commit": "build",
			"gitHead": "ca0fd99588c7bae2f32507e742d201da000c4904",
			"bugs": {
				"url": "https://github.com/ethjs/ethjs-unit/issues"
			},
			"homepage": "https://github.com/ethjs/ethjs-unit#readme",
			"_id": "ethjs-unit@0.1.4",
			"_shasum": "fef16d260a2fda69873b22697587360af38b7a17",
			"_from": ".",
			"_npmVersion": "3.10.3",
			"_nodeVersion": "6.5.0",
			"_npmUser": {
				"name": "silentcicero",
				"email": "thenickdodson@gmail.com"
			},
			"dist": {
				"shasum": "fef16d260a2fda69873b22697587360af38b7a17",
				"tarball": "https://registry.npmjs.org/ethjs-unit/-/ethjs-unit-0.1.4.tgz"
			},
			"maintainers": [
				{
					"name": "silentcicero",
					"email": "thenickdodson@gmail.com"
				}
			],
			"_npmOperationalInternal": {
				"host": "packages-12-west.internal.npmjs.com",
				"tmp": "tmp/ethjs-unit-0.1.4.tgz_1481421679777_0.77727569360286"
			},
			"directories": {}
		},
		"0.1.5": {
			"name": "ethjs-unit",
			"version": "0.1.5",
			"description": "A simple module for handling Ethereum units (e.g. 'ether', 'wei', etc...)",
			"main": "lib/index.js",
			"files": [
				"dist",
				"internals",
				"lib",
				"src"
			],
			"scripts": {
				"start": "npm test",
				"release": "npmpub",
				"pretest": "npm run lint",
				"prepublish": "npm run build",
				"prebuild": "npm run build:clean && npm run test",
				"build:clean": "npm run test:clean && rimraf ./dist",
				"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib --copy-files",
				"build:umd": "cross-env BABEL_ENV=commonjs NODE_ENV=development webpack --config ./internals/webpack/webpack.config.js ./lib/index.js --progress",
				"build:umd:min": "cross-env BABEL_ENV=commonjs NODE_ENV=production webpack --config ./internals/webpack/webpack.config.js ./lib/index.js --progress",
				"build": "npm run build:commonjs && npm run test:lib && npm run build:umd && npm run build:umd:min",
				"lint": "npm run lint:js",
				"lint:eslint": "eslint --ignore-path .gitignore --ignore-pattern **/**.min.js",
				"lint:js": "npm run lint:eslint -- . ",
				"lint:staged": "lint-staged",
				"test:clean": "rimraf ./coverage",
				"test": "mocha ./src/tests/**/*.js -R spec --timeout 2000000",
				"test:lib": "mocha ./lib/tests/**/*.js -R spec --timeout 2000000",
				"test-travis": "node ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- src/tests/**/*.js -R spec --timeout 2000000",
				"coveralls": "npm run test-travis && cat ./coverage/lcov.info | coveralls"
			},
			"engines": {
				"npm": ">=3",
				"node": ">=6.5.0"
			},
			"babel": {
				"plugins": [
					[
						"transform-es2015-template-literals",
						{
							"loose": true
						}
					],
					"transform-es2015-literals",
					"transform-es2015-function-name",
					"transform-es2015-arrow-functions",
					"transform-es2015-block-scoped-functions",
					[
						"transform-es2015-classes",
						{
							"loose": true
						}
					],
					"transform-es2015-object-super",
					"transform-es2015-shorthand-properties",
					[
						"transform-es2015-computed-properties",
						{
							"loose": true
						}
					],
					[
						"transform-es2015-for-of",
						{
							"loose": true
						}
					],
					"transform-es2015-sticky-regex",
					"transform-es2015-unicode-regex",
					"check-es2015-constants",
					[
						"transform-es2015-spread",
						{
							"loose": true
						}
					],
					"transform-es2015-parameters",
					[
						"transform-es2015-destructuring",
						{
							"loose": true
						}
					],
					"transform-es2015-block-scoping",
					"transform-object-rest-spread",
					"transform-es3-member-expression-literals",
					"transform-es3-property-literals"
				],
				"env": {
					"commonjs": {
						"plugins": [
							[
								"transform-es2015-modules-commonjs",
								{
									"loose": true
								}
							]
						]
					}
				}
			},
			"dependencies": {
				"bn.js": "4.11.6",
				"number-to-bn": "1.6.0"
			},
			"devDependencies": {
				"bignumber.js": "3.0.1",
				"babel-cli": "6.18.0",
				"babel-core": "6.18.2",
				"babel-loader": "6.2.8",
				"babel-plugin-check-es2015-constants": "6.8.0",
				"babel-plugin-transform-es2015-arrow-functions": "6.8.0",
				"babel-plugin-transform-es2015-block-scoped-functions": "6.8.0",
				"babel-plugin-transform-es2015-block-scoping": "6.18.0",
				"babel-plugin-transform-es2015-classes": "6.18.0",
				"babel-plugin-transform-es2015-computed-properties": "6.8.0",
				"babel-plugin-transform-es2015-destructuring": "6.19.0",
				"babel-plugin-transform-es2015-for-of": "6.18.0",
				"babel-plugin-transform-es2015-function-name": "6.9.0",
				"babel-plugin-transform-es2015-literals": "6.8.0",
				"babel-plugin-transform-es2015-modules-commonjs": "6.18.0",
				"babel-plugin-transform-es2015-object-super": "6.8.0",
				"babel-plugin-transform-es2015-parameters": "6.18.0",
				"babel-plugin-transform-es2015-shorthand-properties": "6.18.0",
				"babel-plugin-transform-es2015-spread": "6.8.0",
				"babel-plugin-transform-es2015-sticky-regex": "6.8.0",
				"babel-plugin-transform-es2015-template-literals": "6.8.0",
				"babel-plugin-transform-es2015-unicode-regex": "6.11.0",
				"babel-plugin-transform-es3-member-expression-literals": "6.5.0",
				"babel-plugin-transform-es3-property-literals": "6.5.0",
				"babel-plugin-transform-object-rest-spread": "6.19.0",
				"babel-register": "6.18.0",
				"check-es3-syntax-cli": "0.1.3",
				"webpack": "2.1.0-beta.15",
				"json-loader": "0.5.4",
				"rimraf": "2.3.4",
				"cross-env": "1.0.7",
				"babel-eslint": "7.1.0",
				"chai": "3.5.0",
				"coveralls": "2.11.9",
				"eslint": "2.10.1",
				"istanbul": "0.4.5",
				"eslint-config-airbnb": "9.0.1",
				"eslint-import-resolver-webpack": "0.2.4",
				"eslint-plugin-import": "1.8.0",
				"eslint-plugin-jsx-a11y": "1.2.0",
				"eslint-plugin-react": "5.1.1",
				"eventsource-polyfill": "0.9.6",
				"lint-staged": "1.0.1",
				"mocha": "3.1.2",
				"pre-commit": "1.1.3",
				"web3": "0.17.0-beta"
			},
			"keywords": [
				"ethereum",
				"encoding",
				"decoding"
			],
			"author": {
				"name": "Nick Dodson",
				"email": "thenickdodson@gmail.com"
			},
			"contributors": [
				{
					"name": "Richard Moore",
					"email": "me@ricmoo.com",
					"url": "https://ethers.io"
				},
				{
					"name": "Marek Kotewicz",
					"email": "marek@ethdev.com",
					"url": "https://github.com/debris"
				},
				{
					"name": "Fabian Vogelsteller",
					"email": "fabian@ethdev.com"
				},
				{
					"name": "Marian Oancea",
					"email": "marian@ethdev.com",
					"url": "https://github.com/cubedro"
				},
				{
					"name": "Gav Wood",
					"email": "g@ethdev.com"
				},
				{
					"name": "Jeffery Wilcke",
					"email": "jeff@ethdev.com",
					"url": "https://github.com/obscuren"
				}
			],
			"repository": {
				"type": "git",
				"url": "git://github.com/ethjs/ethjs-unit.git"
			},
			"license": "MIT",
			"lint-staged": {
				"lint:eslint": "*.js"
			},
			"eslintConfig": {
				"parser": "babel-eslint",
				"extends": "airbnb",
				"env": {
					"node": true,
					"mocha": true,
					"es6": true
				},
				"parserOptions": {
					"ecmaVersion": 6,
					"sourceType": "module"
				},
				"rules": {
					"import/no-unresolved": 2,
					"comma-dangle": [
						2,
						"always-multiline"
					],
					"indent": [
						2,
						2,
						{
							"SwitchCase": 1
						}
					],
					"no-console": 1,
					"max-len": 0,
					"prefer-template": 2,
					"no-use-before-define": 0,
					"newline-per-chained-call": 0,
					"arrow-body-style": [
						2,
						"as-needed"
					]
				}
			},
			"pre-commit": "build",
			"gitHead": "6ace2e7d3ab0bd343f4be8891b280b247a235bce",
			"bugs": {
				"url": "https://github.com/ethjs/ethjs-unit/issues"
			},
			"homepage": "https://github.com/ethjs/ethjs-unit#readme",
			"_id": "ethjs-unit@0.1.5",
			"_shasum": "ea258e1ec34efdc20988bb5a8292f230c1682a1d",
			"_from": ".",
			"_npmVersion": "3.10.3",
			"_nodeVersion": "6.5.0",
			"_npmUser": {
				"name": "silentcicero",
				"email": "thenickdodson@gmail.com"
			},
			"dist": {
				"shasum": "ea258e1ec34efdc20988bb5a8292f230c1682a1d",
				"tarball": "https://registry.npmjs.org/ethjs-unit/-/ethjs-unit-0.1.5.tgz"
			},
			"maintainers": [
				{
					"name": "silentcicero",
					"email": "thenickdodson@gmail.com"
				}
			],
			"_npmOperationalInternal": {
				"host": "packages-18-east.internal.npmjs.com",
				"tmp": "tmp/ethjs-unit-0.1.5.tgz_1482200461967_0.3358618589118123"
			},
			"directories": {}
		},
		"0.1.6": {
			"name": "ethjs-unit",
			"version": "0.1.6",
			"description": "A simple module for handling Ethereum units (e.g. 'ether', 'wei', etc...)",
			"main": "lib/index.js",
			"files": [
				"dist",
				"internals",
				"lib",
				"src"
			],
			"scripts": {
				"start": "npm test",
				"release": "npmpub",
				"pretest": "npm run lint",
				"prepublish": "npm run build",
				"prebuild": "npm run build:clean && npm run test",
				"build:clean": "npm run test:clean && rimraf ./dist",
				"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib --copy-files",
				"build:umd": "cross-env BABEL_ENV=commonjs NODE_ENV=development webpack --config ./internals/webpack/webpack.config.js ./lib/index.js --progress",
				"build:umd:min": "cross-env BABEL_ENV=commonjs NODE_ENV=production webpack --config ./internals/webpack/webpack.config.js ./lib/index.js --progress",
				"build": "npm run build:commonjs && npm run test:lib && npm run build:umd && npm run build:umd:min",
				"lint": "npm run lint:js",
				"lint:eslint": "eslint --ignore-path .gitignore --ignore-pattern **/**.min.js",
				"lint:js": "npm run lint:eslint -- . ",
				"lint:staged": "lint-staged",
				"test:clean": "rimraf ./coverage",
				"test": "mocha ./src/tests/**/*.js -R spec --timeout 2000000",
				"test:lib": "mocha ./lib/tests/**/*.js -R spec --timeout 2000000",
				"test-travis": "node ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- src/tests/**/*.js -R spec --timeout 2000000",
				"coveralls": "npm run test-travis && cat ./coverage/lcov.info | coveralls"
			},
			"engines": {
				"npm": ">=3",
				"node": ">=6.5.0"
			},
			"babel": {
				"plugins": [
					[
						"transform-es2015-template-literals",
						{
							"loose": true
						}
					],
					"transform-es2015-literals",
					"transform-es2015-function-name",
					"transform-es2015-arrow-functions",
					"transform-es2015-block-scoped-functions",
					[
						"transform-es2015-classes",
						{
							"loose": true
						}
					],
					"transform-es2015-object-super",
					"transform-es2015-shorthand-properties",
					[
						"transform-es2015-computed-properties",
						{
							"loose": true
						}
					],
					[
						"transform-es2015-for-of",
						{
							"loose": true
						}
					],
					"transform-es2015-sticky-regex",
					"transform-es2015-unicode-regex",
					"check-es2015-constants",
					[
						"transform-es2015-spread",
						{
							"loose": true
						}
					],
					"transform-es2015-parameters",
					[
						"transform-es2015-destructuring",
						{
							"loose": true
						}
					],
					"transform-es2015-block-scoping",
					"transform-object-rest-spread",
					"transform-es3-member-expression-literals",
					"transform-es3-property-literals"
				],
				"env": {
					"commonjs": {
						"plugins": [
							[
								"transform-es2015-modules-commonjs",
								{
									"loose": true
								}
							]
						]
					}
				}
			},
			"dependencies": {
				"bn.js": "4.11.6",
				"number-to-bn": "1.7.0"
			},
			"devDependencies": {
				"bignumber.js": "3.0.1",
				"babel-cli": "6.18.0",
				"babel-core": "6.18.2",
				"babel-loader": "6.2.8",
				"babel-plugin-check-es2015-constants": "6.8.0",
				"babel-plugin-transform-es2015-arrow-functions": "6.8.0",
				"babel-plugin-transform-es2015-block-scoped-functions": "6.8.0",
				"babel-plugin-transform-es2015-block-scoping": "6.18.0",
				"babel-plugin-transform-es2015-classes": "6.18.0",
				"babel-plugin-transform-es2015-computed-properties": "6.8.0",
				"babel-plugin-transform-es2015-destructuring": "6.19.0",
				"babel-plugin-transform-es2015-for-of": "6.18.0",
				"babel-plugin-transform-es2015-function-name": "6.9.0",
				"babel-plugin-transform-es2015-literals": "6.8.0",
				"babel-plugin-transform-es2015-modules-commonjs": "6.18.0",
				"babel-plugin-transform-es2015-object-super": "6.8.0",
				"babel-plugin-transform-es2015-parameters": "6.18.0",
				"babel-plugin-transform-es2015-shorthand-properties": "6.18.0",
				"babel-plugin-transform-es2015-spread": "6.8.0",
				"babel-plugin-transform-es2015-sticky-regex": "6.8.0",
				"babel-plugin-transform-es2015-template-literals": "6.8.0",
				"babel-plugin-transform-es2015-unicode-regex": "6.11.0",
				"babel-plugin-transform-es3-member-expression-literals": "6.5.0",
				"babel-plugin-transform-es3-property-literals": "6.5.0",
				"babel-plugin-transform-object-rest-spread": "6.19.0",
				"babel-register": "6.18.0",
				"check-es3-syntax-cli": "0.1.3",
				"webpack": "2.1.0-beta.15",
				"json-loader": "0.5.4",
				"rimraf": "2.3.4",
				"cross-env": "1.0.7",
				"babel-eslint": "7.1.0",
				"chai": "3.5.0",
				"coveralls": "2.11.9",
				"eslint": "2.10.1",
				"istanbul": "0.4.5",
				"eslint-config-airbnb": "9.0.1",
				"eslint-import-resolver-webpack": "0.2.4",
				"eslint-plugin-import": "1.8.0",
				"eslint-plugin-jsx-a11y": "1.2.0",
				"eslint-plugin-react": "5.1.1",
				"eventsource-polyfill": "0.9.6",
				"lint-staged": "1.0.1",
				"mocha": "3.1.2",
				"pre-commit": "1.1.3",
				"web3": "0.17.0-beta"
			},
			"keywords": [
				"ethereum",
				"encoding",
				"decoding"
			],
			"author": {
				"name": "Nick Dodson",
				"email": "thenickdodson@gmail.com"
			},
			"contributors": [
				{
					"name": "Richard Moore",
					"email": "me@ricmoo.com",
					"url": "https://ethers.io"
				},
				{
					"name": "Marek Kotewicz",
					"email": "marek@ethdev.com",
					"url": "https://github.com/debris"
				},
				{
					"name": "Fabian Vogelsteller",
					"email": "fabian@ethdev.com"
				},
				{
					"name": "Marian Oancea",
					"email": "marian@ethdev.com",
					"url": "https://github.com/cubedro"
				},
				{
					"name": "Gav Wood",
					"email": "g@ethdev.com"
				},
				{
					"name": "Jeffery Wilcke",
					"email": "jeff@ethdev.com",
					"url": "https://github.com/obscuren"
				}
			],
			"repository": {
				"type": "git",
				"url": "git://github.com/ethjs/ethjs-unit.git"
			},
			"license": "MIT",
			"lint-staged": {
				"lint:eslint": "*.js"
			},
			"eslintConfig": {
				"parser": "babel-eslint",
				"extends": "airbnb",
				"env": {
					"node": true,
					"mocha": true,
					"es6": true
				},
				"parserOptions": {
					"ecmaVersion": 6,
					"sourceType": "module"
				},
				"rules": {
					"import/no-unresolved": 2,
					"comma-dangle": [
						2,
						"always-multiline"
					],
					"indent": [
						2,
						2,
						{
							"SwitchCase": 1
						}
					],
					"no-console": 1,
					"max-len": 0,
					"prefer-template": 2,
					"no-use-before-define": 0,
					"newline-per-chained-call": 0,
					"arrow-body-style": [
						2,
						"as-needed"
					]
				}
			},
			"pre-commit": "build",
			"gitHead": "6ace2e7d3ab0bd343f4be8891b280b247a235bce",
			"bugs": {
				"url": "https://github.com/ethjs/ethjs-unit/issues"
			},
			"homepage": "https://github.com/ethjs/ethjs-unit#readme",
			"_id": "ethjs-unit@0.1.6",
			"_shasum": "c665921e476e87bce2a9d588a6fe0405b2c41699",
			"_from": ".",
			"_npmVersion": "3.10.3",
			"_nodeVersion": "6.5.0",
			"_npmUser": {
				"name": "silentcicero",
				"email": "thenickdodson@gmail.com"
			},
			"dist": {
				"shasum": "c665921e476e87bce2a9d588a6fe0405b2c41699",
				"tarball": "https://registry.npmjs.org/ethjs-unit/-/ethjs-unit-0.1.6.tgz"
			},
			"maintainers": [
				{
					"name": "silentcicero",
					"email": "thenickdodson@gmail.com"
				}
			],
			"_npmOperationalInternal": {
				"host": "packages-18-east.internal.npmjs.com",
				"tmp": "tmp/ethjs-unit-0.1.6.tgz_1482201087557_0.28183354903012514"
			},
			"directories": {}
		}
	},
	"time": {
		"modified": "2016-12-20T02:31:29.618Z",
		"created": "2016-11-27T20:43:17.215Z",
		"0.0.1": "2016-11-27T20:43:17.215Z",
		"0.0.2": "2016-11-29T15:57:29.261Z",
		"0.1.0": "2016-12-05T02:09:44.752Z",
		"0.1.1": "2016-12-05T05:29:41.706Z",
		"0.1.3": "2016-12-09T05:35:27.189Z",
		"0.1.4": "2016-12-11T02:01:20.007Z",
		"0.1.5": "2016-12-20T02:21:04.121Z",
		"0.1.6": "2016-12-20T02:31:29.618Z"
	},
	"users": {},
	"dist-tags": {
		"latest": "0.1.6"
	},
	"_uplinks": {
		"npmjs": {
			"etag": "W/\"8f0c274db58142fcbf6c4054e40e6edc\"",
			"fetched": 1602009387547
		}
	},
	"_distfiles": {
		"ethjs-unit-0.0.1.tgz": {
			"url": "https://registry.npmjs.org/ethjs-unit/-/ethjs-unit-0.0.1.tgz",
			"sha": "6cb869c8ed0236483ef36ac26f786907d01edf16",
			"registry": "npmjs"
		},
		"ethjs-unit-0.0.2.tgz": {
			"url": "https://registry.npmjs.org/ethjs-unit/-/ethjs-unit-0.0.2.tgz",
			"sha": "5eb384fa8573a85795567d6bd046f65bfd688b2c",
			"registry": "npmjs"
		},
		"ethjs-unit-0.1.0.tgz": {
			"url": "https://registry.npmjs.org/ethjs-unit/-/ethjs-unit-0.1.0.tgz",
			"sha": "a712e3a142000b20b0813c041f17899343efacf1",
			"registry": "npmjs"
		},
		"ethjs-unit-0.1.1.tgz": {
			"url": "https://registry.npmjs.org/ethjs-unit/-/ethjs-unit-0.1.1.tgz",
			"sha": "4d8fedb2d93296233d04a747a26a477688616ec1",
			"registry": "npmjs"
		},
		"ethjs-unit-0.1.3.tgz": {
			"url": "https://registry.npmjs.org/ethjs-unit/-/ethjs-unit-0.1.3.tgz",
			"sha": "ece2b8c2c4b515592997cbf670cb66dd693f92ba",
			"registry": "npmjs"
		},
		"ethjs-unit-0.1.4.tgz": {
			"url": "https://registry.npmjs.org/ethjs-unit/-/ethjs-unit-0.1.4.tgz",
			"sha": "fef16d260a2fda69873b22697587360af38b7a17",
			"registry": "npmjs"
		},
		"ethjs-unit-0.1.5.tgz": {
			"url": "https://registry.npmjs.org/ethjs-unit/-/ethjs-unit-0.1.5.tgz",
			"sha": "ea258e1ec34efdc20988bb5a8292f230c1682a1d",
			"registry": "npmjs"
		},
		"ethjs-unit-0.1.6.tgz": {
			"url": "https://registry.npmjs.org/ethjs-unit/-/ethjs-unit-0.1.6.tgz",
			"sha": "c665921e476e87bce2a9d588a6fe0405b2c41699",
			"registry": "npmjs"
		}
	},
	"_attachments": {
		"ethjs-unit-0.1.6.tgz": {
			"shasum": "c665921e476e87bce2a9d588a6fe0405b2c41699"
		}
	},
	"_rev": "17-3ea46736dac5504e",
	"_id": "ethjs-unit",
	"readme": "## ethjs-unit\n\n<div>\n  <!-- Dependency Status -->\n  <a href=\"https://david-dm.org/ethjs/ethjs-unit\">\n    <img src=\"https://david-dm.org/ethjs/ethjs-unit.svg\"\n    alt=\"Dependency Status\" />\n  </a>\n\n  <!-- devDependency Status -->\n  <a href=\"https://david-dm.org/ethjs/ethjs-unit#info=devDependencies\">\n    <img src=\"https://david-dm.org/ethjs/ethjs-unit/dev-status.svg\" alt=\"devDependency Status\" />\n  </a>\n\n  <!-- Build Status -->\n  <a href=\"https://travis-ci.org/ethjs/ethjs-unit\">\n    <img src=\"https://travis-ci.org/ethjs/ethjs-unit.svg\"\n    alt=\"Build Status\" />\n  </a>\n\n  <!-- NPM Version -->\n  <a href=\"https://www.npmjs.org/package/ethjs-unit\">\n    <img src=\"http://img.shields.io/npm/v/ethjs-unit.svg\"\n    alt=\"NPM version\" />\n  </a>\n\n  <!-- Test Coverage -->\n  <a href=\"https://coveralls.io/r/ethjs/ethjs-unit\">\n    <img src=\"https://coveralls.io/repos/github/ethjs/ethjs-unit/badge.svg\" alt=\"Test Coverage\" />\n  </a>\n\n  <!-- Javascript Style -->\n  <a href=\"http://airbnb.io/javascript/\">\n    <img src=\"https://img.shields.io/badge/code%20style-airbnb-brightgreen.svg\" alt=\"js-airbnb-style\" />\n  </a>\n</div>\n\n<br />\n\nA simple module for handling Ethereum unit convertion.\n\n## Install\n\n```\nnpm install --save ethjs-unit\n```\n\n## Usage\n\n```js\nconst unit = require('ethjs-unit');\n\nvar val1 = unit.toWei(249824778, 'ether');\n\n// result <BN ...> 249824778000000000000000000\n\nvar val2 = unit.fromWei('249824778000000000000000000', 'ether');\n\n// result '249824778'\n```\n\n## About\n\nA port from the `web3.js` library, that just handles the unit convertion between the various types of Ethereum currency units.\n\nNote, the `toWei` returns a BN instance while `fromWei` always returns a string number.\n\n## Amorphic Data Formatting\n\n`ethjs-unit` uses the [number-to-bn](http://github.com/silentcicero/number-to-bn) module to format all number values (hex or otherwise) into digestable BN.js number instances.\n\n## Methods Available & Objects\n\n```\nunitMap         { unitName: singleUnitWeiValue, ... }\ngetValueOfUnit  <Function (unit) : (BN)>\ntoWei           <Function (value, unit) : (BN)>\nfromWei         <Function (value, unit) : (String)>\n```\n\n## Supported Units\n\n```\n'wei':          '1',\n'kwei':         '1000',\n'Kwei':         '1000',\n'babbage':      '1000',\n'femtoether':   '1000',\n'mwei':         '1000000',\n'Mwei':         '1000000',\n'lovelace':     '1000000',\n'picoether':    '1000000',\n'gwei':         '1000000000',\n'Gwei':         '1000000000',\n'shannon':      '1000000000',\n'nanoether':    '1000000000',\n'nano':         '1000000000',\n'szabo':        '1000000000000',\n'microether':   '1000000000000',\n'micro':        '1000000000000',\n'finney':       '1000000000000000',\n'milliether':   '1000000000000000',\n'milli':        '1000000000000000',\n'ether':        '1000000000000000000',\n'kether':       '1000000000000000000000',\n'grand':        '1000000000000000000000',\n'mether':       '1000000000000000000000000',\n'gether':       '1000000000000000000000000000',\n'tether':       '1000000000000000000000000000000'\n```\n\n## Why BN.js?\n\n`ethjs` has made a policy of using `BN.js` accross all of our modules. Here are some reasons why:\n\n  1. Lighter than alternatives (BigNumber.js)\n  2. Faster than most alternatives, see [benchmarks](https://github.com/indutny/bn.js/issues/89)\n  3. Used by the Ethereum foundation across all [`ethereumjs`](https://github.com/ethereumjs) repositories\n  4. Is already used by a critical JS dependency of many ethereum packages, see package [`elliptic`](https://github.com/indutny/elliptic)\n  5. Does not support decimals or floats (for greater precision), remember, the Ethereum blockchain cannot and will not support float values or decimal numbers\n\n## Contributing\n\nPlease help better the ecosystem by submitting issues and pull requests to default. We need all the help we can get to build the absolute best linting standards and utilities. We follow the AirBNB linting standard and the unix philosophy.\n\n## Guides\n\nYou'll find more detailed information on using `ethjs-unit` and tailoring it to your needs in our guides:\n\n- [User guide](docs/user-guide.md) - Usage, configuration, FAQ and complementary tools.\n- [Developer guide](docs/developer-guide.md) - Contributing to `ethjs-unit`, writing coverage and updates.\n\n## Help out\n\nThere is always a lot of work to do, and will have many rules to maintain. So please help out in any way that you can:\n\n- Create, enhance, and debug ethjs rules (see our guide to [\"Working on rules\"](./github/CONTRIBUTING.md)).\n- Improve documentation.\n- Chime in on any open issue or pull request.\n- Open new issues about your ideas for making `ethjs-unit` better, and pull requests to show us how your idea works.\n- Add new tests to *absolutely anything*.\n- Create or contribute to ecosystem tools, like modules for encoding or contracts.\n- Spread the word.\n\nPlease consult our [Code of Conduct](CODE_OF_CONDUCT.md) docs before helping out.\n\nWe communicate via [issues](https://github.com/ethjs/ethjs-unit/issues) and [pull requests](https://github.com/ethjs/ethjs-unit/pulls).\n\n## Important documents\n\n- [Changelog](CHANGELOG.md)\n- [Code of Conduct](CODE_OF_CONDUCT.md)\n- [License](https://raw.githubusercontent.com/ethjs/ethjs-unit/master/LICENSE)\n\n## Licence\n\nThis project is licensed under the MIT license, Copyright (c) 2016 Nick Dodson. For more information see LICENSE.md.\n\n```\nThe MIT License\n\nCopyright (c) 2016 Nick Dodson. nickdodson.com\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n```"
}