Files
electrum-client/package.json
Pavel Ševčík 443606f7ef Bump 1.2.4
2022-03-11 12:02:28 +01:00

49 lines
1.3 KiB
JSON

{
"name": "@samouraiwallet/electrum-client",
"version": "1.2.4",
"engines": {
"node": ">=14.0.0"
},
"description": "Electrum protocol client for Node.js",
"keywords": [
"bitcoin",
"electrum",
"electrumx"
],
"type": "module",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"test": "mocha",
"lint": "eslint --ext .ts src/",
"typescript": "tsc --noEmit",
"build:clean": "rm -rf dist",
"build:esm": "tsc -p tsconfig.build.json",
"build": "npm run build:clean && npm run build:esm",
"prepack": "npm run lint && npm run typescript && npm run test",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git://code.samourai.io/dojo/electrum-client.git"
},
"bugs": {
"url": "https://code.samourai.io/dojo/electrum-client/-/issues"
},
"author": "Katana Cryptographic Ltd.",
"license": "LGPL-3.0",
"homepage": "https://code.samourai.io/dojo/electrum-client",
"devDependencies": {
"@types/mocha": "^9.1.0",
"@types/node": "^14.18.12",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"eslint": "^8.10.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-unicorn": "^41.0.0",
"mocha": "^9.2.1",
"ts-node": "^10.5.0",
"typescript": "^4.5.5"
}
}