-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.01 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
{
"name": "rusty-secrets",
"version": "0.3.0",
"description": "Node.js bindings to RustySecrets, a secret sharing scheme implementation in Rust.",
"keywords": [
"shamir",
"secret sharing",
"threshold",
"secret splitting",
"rust"
],
"author": "Romain Ruetschi <[email protected]>",
"contributors": [
"Frederic Jacobs <[email protected]>"
],
"license": "BSD-3-Clause",
"homepage": "https://github.com/SpinResearch/rustysecrets-node",
"repository": {
"type": "git",
"url": "https://github.com/SpinResearch/rustysecrets-node.git"
},
"bugs": {
"url": "https://github.com/SpinResearch/rustysecrets-node/issues"
},
"os": [
"darwin",
"linux"
],
"cpu": [
"x64"
],
"main": "lib/index.js",
"dependencies": {
"neon-cli": "^0.1.22"
},
"scripts": {
"install": "neon build",
"test": "mocha test/**/*.js",
"prepublishOnly": "npm test"
},
"devDependencies": {
"mocha": "^5.0.0",
"string-format": "^0.5.0"
}
}