34 lines
879 B
JSON
34 lines
879 B
JSON
{
|
|
"name": "vanity-eth",
|
|
"description": "Online ETH vanity address generator",
|
|
"version": "1.0.0",
|
|
"dependencies": {
|
|
"@babel/plugin-transform-object-assign": "^7.0.0-beta.37",
|
|
"babel-preset-env": "^1.6.1",
|
|
"browserify": "^14.5.0",
|
|
"ethereumjs-util": "^5.1.2",
|
|
"gulp": "^3.9.1",
|
|
"gulp-autoprefixer": "^4.0.0",
|
|
"gulp-babel": "^7.0.0",
|
|
"gulp-clean-css": "^3.9.0",
|
|
"gulp-sass": "^3.1.0",
|
|
"gulp-uglify": "^3.0.0",
|
|
"pump": "^2.0.0",
|
|
"randombytes": "^2.0.5",
|
|
"vinyl-source-stream": "^1.1.0",
|
|
"xo": "^0.18.2"
|
|
},
|
|
"license": "ISC",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"build": "node ./node_modules/gulp/bin/gulp.js",
|
|
"test": "node ./node_modules/xo/cli.js",
|
|
"watch": "node ./node_modules/gulp/bin/gulp.js watch"
|
|
},
|
|
"xo": {
|
|
"rules": {
|
|
"object-shorthand": "off",
|
|
"no-new": "off"
|
|
}
|
|
}
|
|
}
|