forked from jwerle/shamirs-secret-sharing
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
49 lines (49 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
44
45
46
47
48
49
{
"name": "shamirs-secret-sharing-ts",
"version": "1.0.2",
"description": "A simple implementation of Shamir's Secret Sharing configured to use a finite field in GF(2^8) with 128 bit padding",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"test": "test"
},
"scripts": {
"test": "tsc & ava test",
"prepublishOnly": "npm run test"
},
"keywords": [
"shamir",
"secret",
"sharing",
"sss",
"typescript",
"ts"
],
"author": "Mathias Schütz <[email protected]>",
"license": "MIT",
"dependencies": {
"randombytes": "^2.1.0"
},
"devDependencies": {
"@ava/typescript": "^1.1.1",
"@types/node": "^13.11.1",
"@types/randombytes": "^2.0.0",
"ava": "^0.25.0",
"nyc": "^12.0.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mathiasschuetz/shamirs-secret-sharing.git"
},
"bugs": {
"url": "https://github.com/mathiasschuetz/shamirs-secret-sharing/issues"
},
"homepage": "https://github.com/mathiasschuetz/shamirs-secret-sharing#readme",
"ava": {
"typescript": {
"rewritePaths": {
"src/": "build/"
}
}
}
}