-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
37 lines (37 loc) · 954 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
{
"name": "vss",
"version": "0.1.0",
"description": "this implements verifiable secret sharing",
"main": "index.js",
"scripts": {
"coveralls": "npm run coverage && nyc report --reporter=text-lcov | coveralls",
"coverage": "nyc npm test",
"lint": "standard",
"test": "node ./tests/index.js",
"build:docs": "documentation build --github -f md ./index.js > ./docs/index.md"
},
"keywords": [
"crypto",
"vss"
],
"author": "mjbecze <[email protected]>",
"license": "MPL-2.0",
"dependencies": {},
"devDependencies": {
"bls-lib": "^0.3.0",
"coveralls": "^3.0.2",
"documentation": "^9.0.0",
"istanbul": "^0.4.1",
"nyc": "^13.1.0",
"standard": "^12.0.1",
"tape": "^4.9.1"
},
"repository": {
"type": "git",
"url": "[email protected]:wanderer/vss.git"
},
"bugs": {
"url": "https://github.com/wanderer/vss/issues"
},
"homepage": "https://github.com/wanderer/vss"
}