-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
64 lines (64 loc) · 1.61 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
{
"name": "bchaddrjs",
"version": "0.5.2",
"description": "Bitcoin Cash general purpose address translation.",
"main": "src/bchaddr.js",
"scripts": {
"clean": "shx rm -rf dist/ docs/",
"build": "webpack",
"lint": "standard --global describe --global it src/* test/*",
"pretest": "yarn lint",
"test": "nyc --reporter=html --reporter=text mocha",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"docs": "jsdoc src/bchaddr.js --destination docs",
"readme": "mustache package.json README.tpl.md > README.md"
},
"engines": {
"node": ">=8.0.0"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/ealmansi/bchaddrjs.git"
},
"keywords": [
"bitcoin-cash",
"bitcoin",
"bch",
"cryptocurrency",
"address",
"encoding",
"translation",
"base58",
"bitpay",
"cash-address"
],
"author": "Emilio Almansi <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ealmansi/bchaddrjs/issues"
},
"homepage": "https://github.com/ealmansi/bchaddrjs#readme",
"devDependencies": {
"@babel/cli": "7.12.10",
"@babel/core": "7.12.10",
"@babel/preset-env": "7.12.11",
"babel-loader": "8.2.2",
"chai": "4.2.0",
"coveralls": "3.0.9",
"jsdoc": "3.6.3",
"mocha": "8.2.1",
"mustache": "2.3.2",
"nyc": "15.0.0",
"shelljs": "0.8.5",
"shx": "^0.3.3",
"standard": "14.3.2",
"webpack": "5.11.0",
"webpack-cli": "4.3.0"
},
"dependencies": {
"bs58check": "3.0.1",
"buffer": "^6.0.3",
"cashaddrjs": "0.4.4",
"stream-browserify": "^3.0.0"
}
}