-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.52 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"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": "[email protected]",
"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"
}
}