UNPKG

create-tezos-smart-contract

Version:

Node.js toolset to write, test and deploy Tezos smart contracts

74 lines (73 loc) 2.47 kB
{ "name": "create-tezos-smart-contract", "version": "1.3.3", "description": "Node.js toolset to write, test and deploy Tezos smart contracts", "bin": { "create-tezos-smart-contract": "./dist/entrypoint.js", "tezos-sdk": "./dist/index.js" }, "files": [ "dist/**/*" ], "scripts": { "test": "jest", "start": "node dist/index.js", "readme": "node scripts/build-bundle-readme.js", "build": "rm -rf dist/* && npm run readme && tsc", "try-init": "npm run build && mkdir output && rm -rf output/* && node dist/index.js --debug --folder ./output/ init test", "try-start-sandbox": "npm run build && node dist/index.js --debug --folder ./output/test start-sandbox", "try-compile": "npm run build && node dist/index.js --debug --folder ./output/test compile", "try-test": "npm run build && node dist/index.js --debug --folder ./output/test test", "try-e2e-test": "npm run build && node dist/index.js --debug --folder ./output/test e2e-test", "try-deploy": "npm run build && node dist/index.js --debug --folder ./output/test deploy", "try-postinstall": "npm run build && node dist/index.js --debug --folder ./output/test postinstall", "cleanup": "rm -rf output", "format": "npx prettier --write ./src/", "check-format": "npx prettier --check ./src/", "lint": "npx eslint ./src/ --ext .js,.ts" }, "repository": { "type": "git", "url": "git+https://github.com/uconomy/lava.git" }, "keywords": [ "tezos", "smart", "contract", "ligo", "flextesa", "blockchain", "smartcontract" ], "author": "uconomy <devhub@uconomy.io>", "license": "MIT", "bugs": { "url": "https://github.com/uconomy/lava/issues" }, "homepage": "https://github.com/uconomy/lava#readme", "devDependencies": { "@types/inquirer": "^7.3.3", "@types/jest": "^27.4.1", "@types/semver": "^7.3.8", "@typescript-eslint/eslint-plugin": "^5.17.0", "@typescript-eslint/parser": "^5.17.0", "ansi-regex": ">=5.0.1", "eslint": "^8.12.0", "eslint-config-prettier": "^8.5.0", "jest": "^27.4.3", "prettier": "^2.3.2", "tmpl": ">=1.0.5", "ts-jest": "^27.1.4", "typescript": "^4.6.3" }, "dependencies": { "@taquito/signer": "^12.1.0", "@taquito/taquito": "^12.1.0", "args": "^5.0.1", "chalk": "^4.1.1", "commander": "^8.0.0", "inquirer": "^8.1.1", "semver": "^7.3.5", "tezos-builder-suite": "^0.6.0" } }