-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
78 lines (78 loc) · 1.55 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
{
"name": "@scrypt-inc/bsv",
"version": "1.0.5",
"description": "A pure and powerful JavaScript Bitcoin SV (BSV) library.",
"author": "sCrypt.Inc",
"source": "./index.js",
"main": "dist/main.js",
"browser": "dist/browser.js",
"types": "./index.d.ts",
"scripts": {
"lint": "standard --fix",
"build": "parcel build --no-cache",
"dev": "mocha -g 'BIP32' ",
"test": "standard && mocha",
"coverage": "nyc --reporter=text npm run test",
"prepublishOnly": "yarn build",
"release": "npm publish --access public"
},
"targets": {
"types": false
},
"keywords": [
"bitcoin",
"bsv",
"scrypt",
"transaction",
"address",
"p2p",
"ecies",
"cryptocurrency",
"blockchain",
"payment",
"bip21",
"bip32",
"bip37",
"bip69",
"bip70",
"multisig"
],
"repository": {
"type": "git",
"url": "git+https://github.com/sCrypt-Inc/bsv"
},
"dependencies": {
"aes-js": "^3.1.2",
"assert": "^2.1.0",
"bn.js": "=4.11.9",
"bs58": "=4.0.1",
"buffer": "^6.0.3",
"clone-deep": "^4.0.1",
"elliptic": "^6.6.1",
"hash.js": "^1.1.7",
"inherits": "2.0.3",
"unorm": "1.4.1"
},
"devDependencies": {
"brfs": "2.0.1",
"chai": "4.2.0",
"mocha": "^8.4.0",
"nyc": "^14.1.1",
"parcel": "latest",
"sinon": "7.2.3",
"standard": "12.0.1"
},
"license": "MIT",
"standard": {
"globals": [
"afterEach",
"beforeEach",
"describe",
"it"
],
"ignore": [
"dist/**",
"esmTest/**"
]
}
}