-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
71 lines (71 loc) · 1.83 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
{
"name": "bsv",
"version": "0.27.1",
"description": "A pure and powerful JavaScript Bitcoin SV (BSV) library.",
"author": "Ryan X. Charles <[email protected]>",
"main": "index.js",
"scripts": {
"lint": "standard",
"test": "standard && mocha",
"build-bsv": "webpack index.js --config webpack.config.js",
"build-ecies": "webpack ecies/index.js --config webpack.subproject.config.js --output-library bsvEcies -o bsv-ecies.min.js",
"build-message": "webpack message/index.js --config webpack.subproject.config.js --output-library bsvMessage -o bsv-message.min.js",
"build-mnemonic": "webpack mnemonic/index.js --config webpack.subproject.config.js --output-library bsvMnemonic -o bsv-mnemonic.min.js",
"build": "yarn build-bsv && yarn build-ecies && yarn build-message && yarn build-mnemonic",
"prepublishOnly": "yarn build"
},
"unpkg": "bsv.min.js",
"keywords": [
"bitcoin",
"transaction",
"address",
"p2p",
"ecies",
"cryptocurrency",
"blockchain",
"payment",
"bip21",
"bip32",
"bip37",
"bip69",
"bip70",
"multisig"
],
"repository": {
"type": "git",
"url": "https://github.com/moneybutton/bsv"
},
"browser": {
"request": "browser-request"
},
"dependencies": {
"aes-js": "^3.1.2",
"bn.js": "=4.11.8",
"bs58": "=4.0.1",
"buffer-compare": "=1.1.1",
"clone-deep": "^4.0.1",
"elliptic": "6.4.1",
"hash.js": "^1.1.7",
"inherits": "2.0.3",
"mocha": "^5.2.0",
"standard": "12.0.1",
"unorm": "1.4.1",
"webpack": "4.29.3"
},
"devDependencies": {
"brfs": "2.0.1",
"chai": "4.2.0",
"lodash": "=4.17.11",
"sinon": "7.2.3",
"webpack-cli": "3.2.3"
},
"license": "MIT",
"standard": {
"globals": [
"afterEach",
"beforeEach",
"describe",
"it"
]
}
}