27 lines
746 B
JSON
27 lines
746 B
JSON
{
|
|
"name": "vanity-eth",
|
|
"description": "Online ETH vanity address generator",
|
|
"version": "1.0.0",
|
|
"dependencies": {
|
|
"babel-preset-env": "^1.6.1",
|
|
"browserify": "^14.5.0",
|
|
"ethereumjs-util": "^5.1.2",
|
|
"gulp": "^3.9.1",
|
|
"gulp-babel": "^7.0.0",
|
|
"gulp-uglify": "^3.0.0",
|
|
"pump": "^2.0.0",
|
|
"randombytes": "^2.0.5",
|
|
"vinyl-source-stream": "^1.1.0"
|
|
},
|
|
"license": "ISC",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"build": "node ./node_modules/gulp/bin/gulp.js build",
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
"watch": "node ./node_modules/gulp/bin/gulp.js watch",
|
|
"precommit": "npm run-script build && git add js/bundle.js"
|
|
},
|
|
"devDependencies": {
|
|
"husky": "^0.14.3"
|
|
}
|
|
}
|