-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
94 lines (94 loc) · 2.62 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
{
"name": "simple-bitcoin-wallet",
"version": "0.0.9",
"description": "For web developers building applications for Bitcoin Cash, Simple Wallet provides an easy and quick way to create BCH wallets and send bitcoin around. simple-wallet give developers high-level interfaces that hides most of the complexity required for such functionality. The mission is to make interaction with Bitcoin Cash Blockchain as simple as possible.",
"author": "Adrian Barwicki",
"homepage": "https://honest.cash",
"scripts": {
"start": "npm run build && live-server dist",
"test": "./node_modules/karma/bin/karma start --browsers Firefox --single-run",
"build": "node ./node_modules/gulp/bin/gulp.js && node ./node_modules/webpack/bin/webpack.js"
},
"output": {
"libraryTarget": "umd"
},
"contributors": [
{
"name": "Adrian Barwicki",
"email": "[email protected]",
"url": "https://adrianbarwicki.com"
}
],
"keywords": [
"bitcoin",
"bitcoincash",
"btc",
"bch",
"devtools",
"blockchain",
"bitcoin-com",
"bitbox",
"wallet",
"bitcoinwallet",
"honestcash"
],
"bin": "dist/simplewallet.min.js",
"main": "dist/simplewallet.min.js",
"files": [
"dist/simplewallet.min.js",
"dist/bitboxlight.min.js"
],
"engines": {
"npm": ">=3.0.0"
},
"dependencies": {
"crypto-js": "^3.1.9-1",
"lzutf8": "^0.5.5"
},
"devDependencies": {
"@types/bluebird": "^3.5.24",
"@types/core-js": "^0.9.36",
"@types/moment": "^2.13.0",
"axios": "^0.18.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"bitbox-sdk": "^8.3.2",
"bitcoinfiles": "^0.3.8",
"css-loader": "^1.0.0",
"eslint": "^5.3.0",
"express": "^4.16.3",
"gulp": "^3.9.1",
"gulp-babel": "^7.0.1",
"gulp-clean": "^0.4.0",
"gulp-clean-css": "^3.10.0",
"gulp-concat-css": "^3.1.0",
"gulp-copy": "^1.1.0",
"gulp-less": "^4.0.1",
"karma": "^3.1.3",
"karma-chrome-launcher": "^2.2.0",
"karma-firefox-launcher": "^1.1.0",
"karma-jasmine": "^2.0.1",
"karma-phantomjs-launcher": "^1.0.4",
"less-loader": "^4.1.0",
"moment": "^2.22.2",
"run-sequence": "^2.2.1",
"style-loader": "^0.22.1",
"ts-loader": "^4.4.2",
"typedoc": "^0.13.0",
"typescript": "^3.0.1",
"typings": "^2.1.1",
"uglifyjs-webpack-plugin": "^2.0.0",
"webpack": "^4.16.5",
"webpack-cli": "^3.1.0",
"webpack-node-externals": "^1.7.2"
},
"babel": {
"presets": [
"es2015"
]
},
"license": "MIT"
}