UNPKG

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