-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 893 Bytes
/
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
{
"name": "secretsharingrepo",
"version": "1.0.0",
"description": "秘密分散スクリプト実装用のリポジトリです。",
"main": "sample/src/index.ts",
"scripts": {
"tsc": "npx tsc",
"test": "npx jest",
"start": "npx tsc && npx ts-node dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mashharuki/SecretSharingRepo.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/mashharuki/SecretSharingRepo/issues"
},
"homepage": "https://github.com/mashharuki/SecretSharingRepo#readme",
"devDependencies": {
"@types/node": "^12.20.55",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"dependencies": {
"@types/jest": "^29.2.1",
"ethers": "^5.7.2",
"jest": "^29.2.2",
"shamirs-secret-sharing": "^1.0.1",
"ts-jest": "^29.0.3"
}
}