-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
48 lines (48 loc) · 1.2 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
{
"dependencies": {
"bigint-buffer": "^1.1.5",
"chalk": "^3.0.0",
"chance": "^1.1.4",
"debug": "^4.1.1",
"jest": "^24.9.0",
"lodash": "^4.17.15",
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.0",
"toml": "^3.0.0",
"uuid": "^3.3.3",
"winston": "3.2.1",
"yargs": "^16.2.0"
},
"scripts": {
"start": "ts-node src/cli.ts",
"cli": "ts-node src/cli.ts",
"test": "jest",
"build": "tsc",
"prepublish": "yarn build"
},
"files": [
"lib"
],
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/chance": "^1.0.8",
"@types/debug": "^4.1.5",
"@types/jest": "^24.0.25",
"@types/lodash": "^4.14.149",
"@types/node": "^13.1.6",
"@types/socket.io": "^2.1.4",
"@types/socket.io-client": "^1.4.32",
"@types/uuid": "^3.4.6",
"prettier": "1.19.1",
"ts-jest": "^24.3.0",
"ts-node": "^8.6.2",
"typescript": "^3.7.4"
},
"name": "@tixl/tixl-consensus",
"version": "1.3.2",
"description": "Stellar Consensus Protocol Prototype implementation in Typescript",
"main": "lib/index.js",
"repository": "[email protected]:tixl/tixl-consensus.git",
"author": "Bernd Strehl <[email protected]>",
"license": "MIT"
}