HelloLightning/cli/package.json
2021-11-16 18:24:31 +00:00

51 lines
1.3 KiB
JSON

{
"name": "cli",
"version": "0.0.0",
"description": "",
"engines": {
"node": ">= 16.13 <17"
},
"devDependencies": {
"@types/jest": "~27.0.2",
"@types/node": "~16.11.6",
"@typescript-eslint/eslint-plugin": "~5.3.0",
"@typescript-eslint/parser": "~5.3.0",
"eslint": "~8.1.0",
"eslint-config-prettier": "~8.3.0",
"eslint-plugin-jest": "~25.2.2",
"jest": "~27.3.1",
"nodemon": "^2.0.15",
"prettier": "~2.4.1",
"rimraf": "~3.0.2",
"ts-jest": "~27.0.7",
"ts-node": "^10.4.0",
"tsutils": "~3.21.0",
"typescript": "~4.4.4"
},
"scripts": {
"start": "ts-node src/main.ts",
"dev": "nodemon --watch src -e ts ./node_modules/.bin/ts-node src/main.ts",
"runbuild": "node build/src/main.js",
"clean": "rimraf coverage build tmp",
"prebuild": "npm run lint",
"build": "tsc -p tsconfig.release.json",
"build:watch": "tsc -w -p tsconfig.release.json",
"lint": "eslint . --ext .ts,.tsx",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"author": "Jakub Synowiec <jsynowiec@users.noreply.github.com>",
"license": "Apache-2.0",
"dependencies": {
"bip32": "2.0.6",
"bip39": "^3.0.4",
"bitcoinjs-lib": "^6.0.0",
"cli-table": "^0.3.6",
"cross-fetch": "^3.1.4",
"tslib": "~2.3.1"
},
"volta": {
"node": "16.13.0"
}
}