Files: 067dae5956ee6811ae781335f12ba2eb22196b69 / package.json
1114 bytesRaw
1 | { |
2 | "name": "bls-lib", |
3 | "version": "0.0.0", |
4 | "description": "this libary provides primitives for creating and verify BLS threshold signatures", |
5 | "main": "index.js", |
6 | "scripts": { |
7 | "coverage": "istanbul cover ./tests/index.js", |
8 | "coveralls": "npm run coverage && coveralls <coverage/lcov.info", |
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 | "" |
15 | ], |
16 | "author": "mjbecze <mjbecze@gmail.com>", |
17 | "license": "MPL-2.0", |
18 | "dependencies": { |
19 | "defined": "^1.0.0" |
20 | }, |
21 | "devDependencies": { |
22 | "array-shuffle": "^1.0.1", |
23 | "coveralls": "^2.11.4", |
24 | "documentation": "^5.2.0", |
25 | "istanbul": "^0.4.1", |
26 | "standard": "^10.0.0", |
27 | "tape": "^4.0.3" |
28 | }, |
29 | "repository": { |
30 | "type": "git", |
31 | "url": "git@github.com:wanderer/bls-lib.git" |
32 | }, |
33 | "bugs": { |
34 | "url": "https://github.com/wanderer/bls-lib/issues" |
35 | }, |
36 | "homepage": "https://github.com/wanderer/bls-lib", |
37 | "standard": { |
38 | "ignore": [ |
39 | "/mcl/", |
40 | "/build/", |
41 | "pre.js", |
42 | "/bls/" |
43 | ] |
44 | } |
45 | } |
46 |
Built with git-ssb-web