-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 976 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 976 Bytes
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": "dkg",
"version": "0.0.2",
"description": "distributed key generation in JS",
"main": "index.js",
"scripts": {
"coveralls": "npm run coverage && nyc report --reporter=text-lcov | coveralls",
"coverage": "nyc npm test",
"lint": "standard",
"test": "node ./test/index.js",
"build:docs": "documentation build --github -f md ./index.js > ./docs/index.md"
},
"keywords": [
"dkg",
"crypto"
],
"author": "mjbecze <mjbecze@gmail.com>",
"license": "MPL-2.0",
"dependencies": {},
"devDependencies": {
"array-shuffle": "^1.0.1",
"bls-wasm": "^0.2.7",
"coveralls": "^3.0.1",
"documentation": "^8.0.0",
"istanbul": "^0.4.1",
"nyc": "^12.0.2",
"standard": "^11.0.1",
"tape": "^4.9.1"
},
"repository": {
"type": "git",
"url": "git@github.com:wanderer/dkg.git"
},
"bugs": {
"url": "https://github.com/wanderer/dkg/issues"
},
"homepage": "https://github.com/wanderer/dkg"
}