You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
82 lines
2.2 KiB
82 lines
2.2 KiB
{
|
|
"name": "bitcoincashjs",
|
|
"version": "0.1.5",
|
|
"description": "A simple, safe, and powerful JavaScript Bitcoin Cash library.",
|
|
"author": "Emilio Almansi <hi@ealmansi.com>",
|
|
"main": "lib/bitcoincash.js",
|
|
"scripts": {
|
|
"build": "npm install && npx gulp build",
|
|
"build:node": "npm install && npx gulp build:node",
|
|
"build:browser": "npm install && npx gulp build:browser",
|
|
"build:test": "npm install && npx gulp build:test",
|
|
"test": "npm install && npx gulp test",
|
|
"test:all": "npm install && npx gulp test:all",
|
|
"test:node": "npm install && npx gulp test:node",
|
|
"test:browser": "npm install && npx gulp test:browser",
|
|
"lint": "npm install && npx gulp lint",
|
|
"coveralls": "npm install && npx gulp coveralls",
|
|
"preversion": "npm install && npm test",
|
|
"version": "npm install && npx gulp version",
|
|
"postversion": "npm install && npx gulp postversion",
|
|
"bump": "npm version patch -m 'Bump version to %s.'"
|
|
},
|
|
"keywords": [
|
|
"bitcoin",
|
|
"transaction",
|
|
"address",
|
|
"p2p",
|
|
"ecies",
|
|
"cryptocurrency",
|
|
"blockchain",
|
|
"payment",
|
|
"bip21",
|
|
"bip32",
|
|
"bip37",
|
|
"bip69",
|
|
"bip70",
|
|
"multisig"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/bitcoincashjs/bitcoincashjs.git"
|
|
},
|
|
"browser": {
|
|
"request": "browser-request"
|
|
},
|
|
"dependencies": {
|
|
"big-integer": "^1.6.26",
|
|
"bn.js": "=2.0.4",
|
|
"bs58": "=2.0.0",
|
|
"buffer-compare": "=1.0.0",
|
|
"cashaddrjs": "^0.1.4",
|
|
"elliptic": "=3.0.3",
|
|
"inherits": "=2.0.1",
|
|
"lodash": "^4.17.4"
|
|
},
|
|
"devDependencies": {
|
|
"babel-core": "^6.26.0",
|
|
"babel-minify": "^0.2.0",
|
|
"babel-preset-env": "^1.6.1",
|
|
"babelify": "^8.0.0",
|
|
"brfs": "^1.4.3",
|
|
"browserify": "^14.5.0",
|
|
"chai": "^1.10.0",
|
|
"coveralls": "^3.0.0",
|
|
"gulp": "^3.8.10",
|
|
"gulp-shell": "^0.6.5",
|
|
"jsdoc": "^3.5.5",
|
|
"jshint": "^2.9.5",
|
|
"karma": "^2.0.0",
|
|
"karma-chrome-launcher": "^2.2.0",
|
|
"karma-detect-browsers": "^2.2.6",
|
|
"karma-firefox-launcher": "^1.1.0",
|
|
"karma-mocha": "^1.3.0",
|
|
"mocha": "^4.1.0",
|
|
"mustache": "^2.3.0",
|
|
"nyc": "^11.4.1",
|
|
"run-sequence": "^2.2.0",
|
|
"sinon": "^1.13.0",
|
|
"uglify-js": "^3.3.4"
|
|
},
|
|
"license": "MIT"
|
|
}
|
|
|