Files: fd809fb0134868c1f4d481a16255753af43fe5f6 / package.json
1280 bytesRaw
1 | { |
2 | "name": "bls-lib", |
3 | "version": "0.3.1", |
4 | "description": "this library provides primitives for creating and verifying BLS threshold signatures", |
5 | "main": "index.js", |
6 | "scripts": { |
7 | "coveralls": "npm run coverage && nyc report --reporter=text-lcov | coveralls", |
8 | "coverage": "nyc npm test", |
9 | "lint": "standard", |
10 | "test": "node ./tests/index.js", |
11 | "build:docs": "documentation build --github -f md ./index.js > ./docs/index.md" |
12 | }, |
13 | "keywords": [ |
14 | "bls", |
15 | "wasm", |
16 | "crypto" |
17 | ], |
18 | "contributors": [ |
19 | "MITSUNARI Shigeo <herumi@nifty.com>", |
20 | "mjbecze <mjbecze@gmail.com>" |
21 | ], |
22 | "license": "MPL-2.0", |
23 | "devDependencies": { |
24 | "array-shuffle": "^1.0.1", |
25 | "coveralls": "^3.0.0", |
26 | "documentation": "^5.3.3", |
27 | "nyc": "^11.3.0", |
28 | "standard": "^10.0.0", |
29 | "tape": "^4.0.3" |
30 | }, |
31 | "repository": { |
32 | "type": "git", |
33 | "url": "git@github.com:dfinity/js-bls-lib.git" |
34 | }, |
35 | "bugs": { |
36 | "url": "https://github.com/dfinity/js-bls-lib/issues" |
37 | }, |
38 | "homepage": "https://github.com/dfinity/js-bls-lib", |
39 | "standard": { |
40 | "ignore": [ |
41 | "/mcl/", |
42 | "/build/", |
43 | "pre.js", |
44 | "/bls/" |
45 | ] |
46 | }, |
47 | "nyc": { |
48 | "exclude": [ |
49 | "build" |
50 | ] |
51 | }, |
52 | "dependencies": { |
53 | "nop": "^1.0.0", |
54 | "safe-buffer": "^5.1.1" |
55 | } |
56 | } |
57 |
Built with git-ssb-web