-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
60 lines (60 loc) · 1.47 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
{
"name": "cashaddrjs",
"version": "0.4.4",
"description": "Bitcoin Cash cashaddr address format support for Node.js and web browsers.",
"main": "src/cashaddr.js",
"files": [
"src/",
"dist/"
],
"scripts": {
"clean": "shx rm -rf dist/ docs/",
"build": "webpack",
"lint": "eslint webpack.config.js {src,test}/**/*.js",
"pretest": "yarn lint",
"test": "nyc --reporter=html --reporter=text mocha",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"docs": "jsdoc -d docs src/cashaddr.js",
"readme": "mustache package.json README.tpl.md > README.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ealmansi/cashaddrjs.git"
},
"keywords": [
"bitcoin",
"cash",
"cashaddr",
"address",
"format",
"node",
"browser"
],
"author": "Emilio Almansi",
"license": "MIT",
"bugs": {
"url": "https://github.com/ealmansi/cashaddrjs/issues"
},
"homepage": "https://github.com/ealmansi/cashaddrjs#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",
"debug": "4.3.1",
"eslint": "6.2.2",
"jsdoc": "3.6.3",
"mocha": "8.2.1",
"mustache": "3.0.1",
"nyc": "15.0.0",
"random-js": "1.0.8",
"shx": "0.3.3",
"webpack": "5.11.0",
"webpack-cli": "4.3.0"
},
"dependencies": {
"big-integer": "1.6.52"
}
}