-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 956 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
35
36
37
38
{
"name": "dark-crystal-secrets",
"version": "1.0.0",
"description": "Dark Crystal's wrapper around Shamir's Secret Shares",
"main": "index.js",
"scripts": {
"test": "npm run test:js && npm run test:lint",
"test:js": "tape 'test/**/*.test.js' | tap-spec",
"test:lint": "standard",
"lint": "standard --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blockades/dark-crystal-secrets.git"
},
"keywords": [
"shamirs",
"secret",
"shares",
"dark-crystal"
],
"author": "kyphae",
"license": "ISC",
"bugs": {
"url": "https://github.com/blockades/dark-crystal-secrets/issues"
},
"homepage": "https://github.com/blockades/dark-crystal-secrets#readme",
"dependencies": {
"secrets.js-grempe": "^1.1.0",
"sodium-native": "^2.2.4"
},
"devDependencies": {
"standard": "^12.0.1",
"tap-spec": "^5.0.0",
"tape": "^4.9.2",
"tape-plus": "^1.0.0"
}
}