-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.25 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
{
"name": "bchjs",
"version": "0.1.0-alpha.3",
"description": "bch.js is a lightweight wrapper around a Bitcoin Cash Node RPC",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"mocha": "./node_modules/.bin/mocha",
"test": "npm run build && npm run mocha",
"build": "node ./node_modules/gulp/bin/gulp.js && ./node_modules/typescript/bin/tsc",
"build:webpack": "node ./node_modules/gulp/bin/gulp.js && node ./node_modules/webpack/bin/webpack.js",
"prepublishOnly": "npm install && npm run build"
},
"keywords": [
"bitcoin",
"bitcoincash",
"btc",
"bch",
"ganache-cli",
"devtools",
"blockchain",
"pandacash",
"bitcoin-com",
"bitbox",
"web3"
],
"author": "",
"license": "MIT",
"dependencies": {
"axios": "^0.18.0",
"bchaddrjs": "^0.2.2",
"bitcoincashjs": "^0.1.10"
},
"devDependencies": {
"@types/node": "^10.12.5",
"chai": "^4.2.0",
"gulp": "^3.9.1",
"gulp-clean": "^0.4.0",
"mocha": "^5.2.0",
"pandacash-core": "^0.2.0",
"run-sequence": "^2.2.1",
"ts-loader": "^5.3.0",
"typescript": "^3.1.6",
"uglifyjs-webpack-plugin": "^2.0.1",
"webpack": "^4.25.0",
"webpack-cli": "^3.1.2"
}
}