UNPKG

1.63 kBJSONView Raw
1{
2 "name": "bchaddrjs",
3 "version": "0.1.4",
4 "description": "Bitcoin Cash general purpose address translation.",
5 "main": "src/bchaddr.js",
6 "scripts": {
7 "build": "node scripts/build.js",
8 "lint": "standard --global describe --global it src/ test/ scripts/",
9 "test": "npm run lint && nyc --reporter=html --reporter=text mocha",
10 "coveralls": "nyc report --reporter=text-lcov | coveralls",
11 "docs": "jsdoc src/bchaddr.js --destination jsdoc && http-server jsdoc",
12 "preversion": "npm test",
13 "version": "node scripts/version.js",
14 "postversion": "node scripts/postversion.js",
15 "bump": "npm version patch -m 'Bump version to %s.'",
16 "bump:minor": "npm version minor -m 'Bump version to %s.'"
17 },
18 "repository": {
19 "type": "git",
20 "url": "git+ssh://git@github.com/bitcoincashjs/bchaddrjs.git"
21 },
22 "keywords": [
23 "bitcoin-cash",
24 "bitcoin",
25 "bch",
26 "cryptocurrency",
27 "address",
28 "encoding",
29 "translation",
30 "base58",
31 "bitpay",
32 "cash-address"
33 ],
34 "author": "Emilio Almansi <hi@ealmansi.com>",
35 "license": "MIT",
36 "bugs": {
37 "url": "https://github.com/bitcoincashjs/bchaddrjs/issues"
38 },
39 "homepage": "https://github.com/bitcoincashjs/bchaddrjs#readme",
40 "devDependencies": {
41 "browserify": "^15.2.0",
42 "chai": "^4.1.2",
43 "coveralls": "^3.0.0",
44 "http-server": "^0.11.1",
45 "jsdoc": "^3.5.5",
46 "mocha": "^4.1.0",
47 "mustache": "^2.3.0",
48 "nyc": "^11.4.1",
49 "shelljs": "^0.8.0",
50 "standard": "^10.0.3",
51 "uglify-js": "^3.3.7"
52 },
53 "dependencies": {
54 "bs58check": "^2.1.1",
55 "cashaddrjs": "^0.2.7"
56 }
57}