forked from ealmansi/bchaddrjs
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
67 lines (67 loc) · 1.77 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": "bchaddrjs-slp",
"version": "0.2.14",
"description": "Bitcoin Cash and SLP general purpose address translation.",
"main": "src/bchaddr.js",
"types": "src/bchaddr.d.ts",
"files": [
"src/*",
"dist/*"
],
"scripts": {
"build": "node scripts/build.js",
"lint": "standard --global describe --global it src/*.js test/* scripts/*",
"pretest": "npm run lint",
"test": "nyc --reporter=html --reporter=text mocha",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"docs": "jsdoc src/bchaddr.js --destination jsdoc && http-server jsdoc",
"preversion": "npm test",
"version": "node scripts/version.js",
"postversion": "node scripts/postversion.js",
"bump": "npm version patch -m 'Bump version to %s.'",
"bump:minor": "npm version minor -m 'Bump version to %s.'"
},
"engines": {
"node": ">= 6.0.0"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/simpleledger/bchaddrjs.git"
},
"keywords": [
"bitcoin-cash",
"bitcoin",
"bch",
"cryptocurrency",
"address",
"encoding",
"translation",
"base58",
"bitpay",
"cash-address"
],
"author": "Emilio Almansi <hi@ealmansi.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/simpleledger/bchaddrjs/issues"
},
"homepage": "https://github.com/simpleledger/bchaddrjs#readme",
"devDependencies": {
"browserify": "^15.2.0",
"chai": "^4.1.2",
"coveralls": "^3.0.2",
"http-server": "^0.11.1",
"jsdoc": "^3.5.5",
"lodash": "^4.17.15",
"mocha": "^4.1.0",
"mustache": "^2.3.2",
"nyc": "^11.9.0",
"shelljs": "^0.8.2",
"standard": "^10.0.3",
"uglify-es": "^3.3.9"
},
"dependencies": {
"bs58check": "^2.1.2",
"cashaddrjs-slp": "^0.2.12"
}
}