-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
56 lines (56 loc) · 1.25 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
46
47
48
49
50
51
52
53
54
55
56
{
"name": "bls-lib",
"version": "0.3.4",
"description": "this library provides primitives for creating and verifying BLS threshold signatures",
"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": [
"bls",
"wasm",
"crypto"
],
"contributors": [
"MITSUNARI Shigeo <herumi@nifty.com>",
"mjbecze <mjbecze@gmail.com>"
],
"license": "MPL-2.0",
"devDependencies": {
"array-shuffle": "^1.0.1",
"coveralls": "^3.0.1",
"documentation": "^6.3.3",
"nyc": "^11.8.0",
"standard": "^11.0.1",
"tape": "^4.9.0"
},
"repository": {
"type": "git",
"url": "git@github.com:dfinity/js-bls-lib.git"
},
"bugs": {
"url": "https://github.com/dfinity/js-bls-lib/issues"
},
"homepage": "https://github.com/dfinity/js-bls-lib",
"standard": {
"ignore": [
"/mcl/",
"/build/",
"pre.js",
"/bls/"
]
},
"nyc": {
"exclude": [
"build"
]
},
"dependencies": {
"nop": "^1.0.0",
"safe-buffer": "^5.1.2"
}
}