dappstep
Version:
Simple abstraction to create transactions for Ergo
59 lines (58 loc) • 1.64 kB
JSON
{
"name": "dappstep",
"version": "1.0.1",
"description": "Simple abstraction to create transactions for Ergo",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest --config jestconfig.json",
"test:tdd": "jest --config jestconfig.json --watchAll",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ilyaLibin/dAppStep.git"
},
"keywords": [
"Ergo",
"dApp"
],
"author": "nirvanush",
"license": "MIT",
"bugs": {
"url": "https://github.com/ilyaLibin/dAppStep/issues"
},
"files": [
"lib /**/*"
],
"homepage": "https://github.com/ilyaLibin/dAppStep#readme",
"devDependencies": {
"@types/jest": "^27.4.1",
"jest": "^27.5.1",
"jest-fetch-mock": "^3.0.3",
"prettier": "^2.6.2",
"ts-jest": "^27.1.4",
"ts-loader": "^9.2.8",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.6.3",
"wasm-loader": "^1.3.0",
"@typescript-eslint/eslint-plugin": "5.11.0",
"@typescript-eslint/parser": "5.11.0",
"eslint": "8.8.0",
"eslint-config-prettier": "8.3.0",
"eslint-import-resolver-typescript": "2.5.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-prettier": "4.0.0"
},
"dependencies": {
"ergo-lib-wasm-browser": "^0.15.0"
}
}