UNPKG

mokka

Version:

Mokka Consensus Algorithm implementation in Javascript

59 lines (58 loc) 1.55 kB
{ "name": "mokka", "version": "1.4.2", "description": "Mokka Consensus Algorithm implementation in Javascript", "repository": { "type": "git", "url": "https://github.com/ega-forever/mokka.git" }, "scripts": { "tsc:watch": "tsc -w", "tsc:build": "tsc", "test": "mocha --timeout 180000 -r ts-node/register src/test/**/*.spec.ts src/test/**/**/*.spec.ts", "lint": "tslint --fix --project tsconfig.json", "build_web": "webpack", "build_dist": "rm -rf dist && npm run tsc:build && npm run build_web" }, "keywords": [ "mokka", "consensus", "rsm", "raft", "distributed" ], "main": "dist/consensus/main.js", "types": "dist/consensus/main.d.ts", "author": "zyev.egor@gmail.com", "license": "AGPLv3", "dependencies": { "bn.js": "^5.2.0", "elliptic": "^6.5.4" }, "devDependencies": { "@types/bluebird": "^3.5.36", "@types/bunyan": "^1.8.8", "@types/chai": "^4.3.0", "@types/mocha": "^9.1.0", "@types/node": "^16.4.0", "axios": "^0.25.0", "axon": "2.0.x", "bluebird": "^3.7.2", "body-parser": "^1.19.1", "bunyan": "^1.8.15", "chai": "^4.3.6", "express": "^4.17.2", "leveldown": "^6.1.0", "lodash": "^4.17.21", "mocha": "^9.2.0", "node-polyfill-webpack-plugin": "^1.1.4", "ts-loader": "^9.2.6", "ts-node": "^10.5.0", "tslint": "^6.1.3", "typescript": "^4.5.5", "webpack": "^5.68.0", "webpack-bundle-analyzer": "^4.5.0", "webpack-cli": "^4.9.2", "zeromq": "^6.0.0-beta.6" } }