-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
38 lines (38 loc) · 1.09 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
{
"name": "shamirs-secret-sharing",
"version": "2.0.0",
"description": "A simple implementation of Shamir's Secret Sharing configured to use a finite field in GF(2^8) with 128 bit padding",
"main": "index.js",
"type": "module",
"exports": {
"import": "./index.js",
"require": "./module.cjs"
},
"directories": {
"test": "test"
},
"scripts": {
"test": "npm run test:node",
"test:node": "cd test && node --test --test-reporter tap runtimes/node.js",
"test:socket": "cd test && ssc build --headless -r -o",
"generate:commonjs": "rm -f module.cjs && esbuild index.js --bundle --format=cjs > module.cjs"
},
"keywords": [
"shamir",
"secret",
"sharing",
"sss"
],
"author": "Joseph Werle <joseph.werle@gmail.com>",
"license": "MIT",
"dependencies": {},
"devDependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/jwerle/shamirs-secret-sharing.git"
},
"bugs": {
"url": "https://github.com/jwerle/shamirs-secret-sharing/issues"
},
"homepage": "https://github.com/jwerle/shamirs-secret-sharing#readme"
}