forked from ealmansi/cashaddrjs
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
65 lines (65 loc) · 1.74 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
{
"name": "cashaddrjs-slp",
"version": "0.2.12",
"description": "SLP & Bitcoin Cash cashaddr address format support for Node.js and web browsers.",
"main": "src/cashaddr.js",
"files": [
"src/",
"dist/"
],
"scripts": {
"build": "node scripts/build.js",
"test": "npx nyc --reporter=html --reporter=text npx mocha --require babel-core/register --timeout 15000",
"coveralls": "npx nyc report --reporter=text-lcov | npx coveralls",
"docs": "node scripts/docs.js",
"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.'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/simpleledger/cashaddrjs.git"
},
"keywords": [
"bitcoin",
"cash",
"cashaddr",
"address",
"format",
"node",
"browser"
],
"author": "Emilio Almansi",
"license": "MIT",
"bugs": {
"url": "https://github.com/simpleledger/cashaddrjs/issues"
},
"homepage": "https://github.com/simpleledger/cashaddrjs#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"babelify": "^8.0.0",
"browserify": "^14.5.0",
"chai": "^4.1.2",
"coveralls": "^3.0.2",
"eslint": "^4.19.1",
"http-server": "^0.10.0",
"jsdoc": "^3.5.5",
"lodash": "^4.17.10",
"mocha": "^4.0.1",
"mocha-eslint": "^4.1.0",
"mustache": "^2.3.2",
"nyc": "^11.9.0",
"random-js": "^1.0.8",
"shelljs": "^0.7.8",
"uglify-js": "^3.4.7",
"watchify": "^3.11.0"
},
"dependencies": {
"big-integer": "^1.6.34"
}
}