-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.48 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
{
"name": "pandacash-core",
"version": "0.3.1",
"description": "Core code for pandacash",
"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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/panda-suite/pandacash-core.git"
},
"author": "Pandas",
"license": "MIT",
"bugs": {
"url": "https://github.com/panda-suite/pandacash-core/issues"
},
"keywords": [
"bitcoin",
"bitcoincash",
"btc",
"bch",
"rpc",
"ganache-cli",
"devtools",
"blockchain",
"pandacash",
"bitcoin-com",
"bitbox"
],
"contributors": [
{
"name": "Adrian Barwicki",
"email": "[email protected]",
"url": "https://adrianbarwicki.com"
},
{
"name": "Rosco Kalis",
"email": "[email protected]",
"url": "https://kalis.me"
},
{
"name": "Gabriel Cardona"
}
],
"homepage": "https://github.com/panda-suite/pandacash-core#readme",
"dependencies": {
"bcash": "^1.1.0",
"bchjs": "0.1.0-alpha.3",
"bitbox-sdk": "^2.1.1"
},
"devDependencies": {
"@types/node": "^10.12.2",
"bitcoincashjs": "^0.1.10",
"gulp": "^3.9.1",
"gulp-clean": "^0.4.0",
"mocha": "^5.2.0",
"run-sequence": "^2.2.1",
"typescript": "^3.1.6"
}
}