forked from natrixofficial/npvdkgrs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.83 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
59
60
61
62
63
64
65
66
67
68
69
{
"name": "npvdkgrs",
"version": "1.0.0",
"description": "This project contains a mathematical presentation and a demonstration code of the Non-interactive Publicly Verifiable Distributed Key Generation and Resharing algorithm",
"homepage": "https://github.com/natrixofficial/npvdkgrs.git#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/natrixofficial/npvdkgrs.git"
},
"main": "dist/main.js",
"scripts": {
"shx": "./node_modules/.bin/shx",
"tsc": "./node_modules/.bin/tsc",
"clean": "shx rm -rf dist && shx rm -rf tsconfig.tsbuildinfo",
"build-ts": "tsc --project tsconfig.build.json",
"build": "npm run lint && npm run build-ts",
"build:clean": "npm run lint && npm run clean && npm run build-ts",
"start": "npm run build:clean && node ./dist/main.js",
"lint": "tsc --noEmit && eslint \"src/**/*.{js,ts}\"",
"lint-fix": "tsc --noEmit && eslint \"src/**/*.{js,ts}\" --fix"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"keywords": [
"DKG",
"dkg",
"non-interactive",
"publicly verifiable",
"key resharing",
"PVSS",
"PVSH"
],
"author": "NATRIX <[email protected]> (https://natrix.io)",
"license": "AGPL-3.0-or-later",
"dependencies": {
"bls-eth-wasm": "^1.0.3",
"bls-wasm": "^0.4.7",
"mcl-wasm": "^1.0.0",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@types/eslint": "^8.4.1",
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.4",
"prettier": "^2.5.1",
"shx": "^0.3.4",
"ts-node": "^10.5.0",
"typescript": "^4.5.5"
},
"lint-staged": {
"src/**/*.{js,ts}": [
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}