UNPKG

near-sandbox

Version:

CLI tool for testing NEAR smart contracts

46 lines (45 loc) 1.08 kB
{ "name": "near-sandbox", "version": "0.1.5", "description": "CLI tool for testing NEAR smart contracts", "main": "dist/index.js", "types": "dist/index.d.ts", "bin": { "near-sandbox": "./run.js", "sandbox": "./run.js" }, "repository": "https://github.com/near/sandbox", "author": "Near Inc (team@near.org)", "license": "MIT", "private": false, "dependencies": { "got": "^11.8.6", "tar": "^6.2.0" }, "devDependencies": { "@changesets/changelog-github": "0.4.6", "@changesets/cli": "2.24.4", "@commitlint/cli": "17.0.3", "@commitlint/config-conventional": "17.0.3", "@sindresorhus/tsconfig": "^2.0.0", "@types/node": "^16.4.10", "@types/tar": "^4.0.5", "ava": "3.15.0", "ts-node": "^10.1.0", "typescript": "^4.3.5" }, "scripts": { "postinstall": "node ./install.js", "preinstall": "node ./uninstall.js", "test": "ava", "build": "tsc", "changeset": "changeset", "release": "changeset publish" }, "files": [ "*.js", "bin", "dist/*.ts", "dist/*.js" ] }