-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
43 lines (43 loc) · 1.16 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
{
"name": "@kzen-networks/thresh-sig",
"version": "0.4.2",
"description": "Threshold signatures based on two-party ECDSA",
"main": "./dist/src/index.js",
"types": "./dist/types/index.d.ts",
"repository": "https://github.com/KZen-networks/thresh-sig.git",
"author": "Oded Leiba <[email protected]>",
"license": "GPL-3.0",
"scripts": {
"start-p1-server": "node ./demo/party1.js",
"clean": "rm -rf dist",
"build-rust": "neon build -r",
"build-ts": "tsc",
"build": "npm run build-rust && npm run build-ts",
"test": "mocha",
"prepublishOnly": "npm run build && npm test",
"postinstall": "npm run build-rust"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.6",
"@types/node": "^11.13.8",
"@zilliqa-js/crypto": "^0.7.5",
"chai": "^4.2.0",
"mocha": "^6.1.4",
"ts-mocha": "^7.0.0",
"ts-node": "^8.1.0",
"tslib": "^1.9.3",
"typescript": "^3.4.5"
},
"dependencies": {
"@types/elliptic": "^6.4.9",
"@types/rocksdb": "^3.0.0",
"elliptic": "^6.5.1",
"neon-cli": "^0.2.0",
"rocksdb": "^4.1.0"
},
"engines": {
"node": "^10.16.0",
"npm": "^6.9.0"
}
}