forked from moneybutton/bsv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
127 lines (127 loc) · 2.9 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
{
"name": "bsv",
"description": "Javascript library for Bitcoin SV (BSV).",
"version": "2.0.3",
"author": "Yours Inc.",
"homepage": "https://github.com/moneybutton/bsv",
"source": "entry.js",
"main": "dist/bsv.js",
"module": "dist/bsv.modern.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 && microbundle --target node -f modern,cjs",
"prepublish": "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",
"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.9.6",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/register": "^7.9.0",
"@babel/runtime": "^7.9.6",
"babel-loader": "^8.1.0",
"babel-polyfill": "^6.26.0",
"documentation": "^13.0.2",
"karma": "^5.0.7",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^1.3.0",
"karma-mocha": "^2.0.1",
"karma-webpack": "^4.0.2",
"microbundle": "^0.12.0",
"mocha": "^7.1.2",
"npm-link-shared": "^0.5.6",
"should": "^13.2.3",
"sinon": "^9.0.2",
"standard": "^14.3.4",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"license": "MIT",
"standard": {
"ignore": [
"lib/interp.js",
"dist/*"
]
}
}