UNPKG

erc20-wizard

Version:

CLI for creating and deploying ERC20 tokens on Ethereum network.

79 lines (78 loc) 1.81 kB
{ "name": "erc20-wizard", "version": "1.0.7", "description": "CLI for creating and deploying ERC20 tokens on Ethereum network.", "main": "lib/index.js", "bin": { "erc20-wizard": "lib/index.js" }, "scripts": { "build": "gulp", "start": "ts-node ./src/index.ts", "test": "jest", "lint": "tslint --project tsconfig.json", "preuninstall": "node lib/scripts/pre-uninstall.js", "prepublish": "gulp" }, "author": { "name": "Marko Marinovic", "email": "marinovic.marko@outlook.com", "url": "https://markomarinovic.com" }, "keywords": [ "ethereum", "erc20", "token", "deploy", "contract", "tool", "cli", "infura", "ico", "wizard" ], "license": "MIT", "dependencies": { "cli-spinner": "0.2.10", "colors": "1.4.0", "command-line-args": "5.0.2", "configstore": "5.0.1", "minimist": "1.2.5", "prompt": "1.0.0", "solc": "0.4.25", "truffle-privatekey-provider": "1.3.0", "web3": "1.2.7" }, "devDependencies": { "@types/cli-spinner": "^0.2.0", "@types/configstore": "^4.0.0", "@types/jest": "^25.2.1", "@types/minimist": "^1.2.0", "@types/node": "^13.9.5", "del": "^5.1.0", "gulp": "^4.0.2", "gulp-typescript": "^6.0.0-alpha.1", "jest": "^25.4.0", "jest-in-case": "^1.0.2", "merge-stream": "^2.0.0", "prettier": "^2.0.2", "ts-jest": "^25.4.0", "ts-node": "^8.9.1", "tslint": "^6.1.0", "tslint-config-prettier": "^1.18.0", "typescript": "^3.8.3" }, "jest": { "testEnvironment": "node", "transform": { "^.+\\.(t|j)sx?$": "ts-jest" }, "testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$", "moduleFileExtensions": [ "ts", "tsx", "js", "jsx" ] } }