forked from bcoin-org/bcrypto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 3.52 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "bcrypto",
"version": "4.1.0",
"description": "JS crypto library",
"keywords": [
"cipher",
"crypto",
"digest",
"hash",
"hashing"
],
"license": "MIT",
"repository": "git://github.com/bcoin-org/bcrypto.git",
"homepage": "https://github.com/bcoin-org/bcrypto",
"bugs": {
"url": "https://github.com/bcoin-org/bcrypto/issues"
},
"author": "Christopher Jeffrey <[email protected]>",
"main": "./lib/bcrypto.js",
"scripts": {
"install": "node-gyp rebuild || echo 'Build failed.'",
"lint": "eslint bench/*.js lib/ scripts/ test/ || exit 0",
"lint-ci": "eslint bench/*.js lib/ scripts/ test/",
"test": "bmocha -S --file ./scripts/post.js test/*-test.js",
"test-native": "bmocha -B native -S --file ./scripts/post.js test/*-test.js",
"test-node": "bmocha -B node -S test/*-test.js",
"test-js": "bmocha -B js -S test/*-test.js",
"test-browser": "bmocha -B js -H -S test/*-test.js",
"test-bigint": "bmocha -B js -e BCRYPTO_FORCE_BIGINT=1 -S test/*-test.js",
"test-gmp": "bmocha -B js -e BCRYPTO_FORCE_GMP=1 -S test/*-test.js",
"test-all": "npm run test-browser && npm run test-native && npm run test-node && npm run test-js && npm run test-bigint"
},
"dependencies": {
"bsert": "~0.0.10",
"bufio": "~1.0.6",
"loady": "~0.0.1",
"nan": "^2.13.2"
},
"devDependencies": {
"bmocha": "^2.1.0"
},
"engines": {
"node": ">=8.0.0"
},
"gypfile": true,
"browser": {
"./lib/aead": "./lib/aead-browser.js",
"./lib/aes": "./lib/aes-browser.js",
"./lib/blake2b": "./lib/blake2b-browser.js",
"./lib/blake2s": "./lib/blake2s-browser.js",
"./lib/bn": "./lib/bn-browser.js",
"./lib/chacha20": "./lib/chacha20-browser.js",
"./lib/cipher": "./lib/cipher-browser.js",
"./lib/cleanse": "./lib/cleanse-browser.js",
"./lib/dsa": "./lib/dsa-browser.js",
"./lib/ed25519": "./lib/ed25519-browser.js",
"./lib/ed448": "./lib/ed448-browser.js",
"./lib/encoding/base58": "./lib/encoding/base58-browser.js",
"./lib/encoding/bech32": "./lib/encoding/bech32-browser.js",
"./lib/encoding/cash32": "./lib/encoding/cash32-browser.js",
"./lib/hash160": "./lib/hash160-browser.js",
"./lib/hash256": "./lib/hash256-browser.js",
"./lib/internal/custom": "./lib/internal/custom-browser.js",
"./lib/keccak": "./lib/keccak-browser.js",
"./lib/md4": "./lib/md4-browser.js",
"./lib/md5": "./lib/md5-browser.js",
"./lib/murmur3": "./lib/murmur3-browser.js",
"./lib/p192": "./lib/p192-browser.js",
"./lib/p224": "./lib/p224-browser.js",
"./lib/p256": "./lib/p256-browser.js",
"./lib/p384": "./lib/p384-browser.js",
"./lib/p521": "./lib/p521-browser.js",
"./lib/pbkdf2": "./lib/pbkdf2-browser.js",
"./lib/poly1305": "./lib/poly1305-browser.js",
"./lib/random": "./lib/random-browser.js",
"./lib/ripemd160": "./lib/ripemd160-browser.js",
"./lib/rsa": "./lib/rsa-browser.js",
"./lib/salsa20": "./lib/salsa20-browser.js",
"./lib/scrypt": "./lib/scrypt-browser.js",
"./lib/secp256k1": "./lib/secp256k1-browser.js",
"./lib/sha1": "./lib/sha1-browser.js",
"./lib/sha224": "./lib/sha224-browser.js",
"./lib/sha256": "./lib/sha256-browser.js",
"./lib/sha384": "./lib/sha384-browser.js",
"./lib/sha512": "./lib/sha512-browser.js",
"./lib/sha3": "./lib/sha3-browser.js",
"./lib/siphash": "./lib/siphash-browser.js",
"./lib/whirlpool": "./lib/whirlpool-browser.js",
"./lib/x25519": "./lib/x25519-browser.js",
"./lib/x448": "./lib/x448-browser.js"
}
}