forked from moneybutton/bsv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
131 lines (131 loc) · 2.95 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "bsv",
"description": "Javascript library for Bitcoin SV (BSV).",
"version": "2.0.10",
"author": "Yours Inc.",
"homepage": "https://github.com/moneybutton/bsv",
"source": "entry.js",
"main": "dist/bsv.cjs.js",
"module": "dist/bsv.module.js",
"unpkg": "dist/bsv.bundle.js",
"library": "bsvjs",
"scripts": {
"clean": "rm -rf node_modules/* yarn.lock",
"lint": "standard *.js lib/**/*.js bin/**/*.js test/**/*.js",
"pretest": "yarn run lint",
"test:mocha": "mocha",
"test:karma": "karma start --single-run",
"test": "yarn run test:mocha && yarn run test:karma",
"build": "webpack",
"prepublish": "yarn build",
"prepack": "yarn build",
"doc": "documentation build entry.js -f html -o doc"
},
"contributors": [
{
"name": "Daniel Cousens",
"email": "[email protected]"
},
{
"name": "Gordon Hall",
"email": "[email protected]"
},
{
"name": "Jeff Garzik",
"email": "[email protected]"
},
{
"name": "Kyle Drake",
"email": "[email protected]"
},
{
"name": "Manuel Araoz",
"email": "[email protected]"
},
{
"name": "Matias Alejo Garcia",
"email": "[email protected]"
},
{
"name": "Ryan X. Charles",
"email": "[email protected]"
},
{
"name": "Stefan Thomas",
"email": "[email protected]"
},
{
"name": "Stephen Pair",
"email": "[email protected]"
},
{
"name": "Wei Lu",
"email": "[email protected]"
},
{
"name": "Josh Ellithorpe",
"email": "[email protected]"
}
],
"keywords": [
"bitcoin",
"bsv",
"blockchain",
"bip32",
"bip39",
"bip68",
"multisig",
"ecies"
],
"repository": {
"type": "git",
"url": "https://github.com/moneybutton/bsv.git"
},
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"aes": "0.1.0",
"bitcoin-elliptic": "^7.0.1",
"bn.js": "^5.1.1",
"bs58": "4.0.1",
"buffer": "^6.0.3",
"chai": "^4.2.0",
"hash.js": "^1.1.7",
"is-hex": "1.1.3",
"pbkdf2": "3.1.1",
"randombytes": "^2.1.0"
},
"devDependencies": {
"@babel/core": "7.14.3",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "7.14.2",
"@babel/register": "^7.9.0",
"@babel/runtime": "^7.9.6",
"assert": "2.0.0",
"babel-loader": "8.2.2",
"documentation": "^13.1.1",
"karma": "^6.3.2",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^2.1.0",
"karma-mocha": "^2.0.1",
"karma-webpack": "^5.0.0",
"mocha": "^7.1.2",
"npm-link-shared": "^0.5.6",
"process": "0.11.10",
"should": "^13.2.3",
"sinon": "^9.0.2",
"standard": "^14.3.4",
"util": "0.12.3",
"webpack": "^5.37.1",
"webpack-cli": "^4.7.0"
},
"license": "MIT",
"standard": {
"ignore": [
"lib/interp.js",
"dist/*"
]
}
}