@azpool/chia-client
Version:
TypeScript client for Chia node peer RPC interface
62 lines (61 loc) • 1.31 kB
JSON
{
"name": "@azpool/chia-client",
"version": "0.1.2",
"description": "TypeScript client for Chia node peer RPC interface",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"private": false,
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"test": "jest --runInBand test/",
"prepare": "rm -rf dist && npm run build",
"release": "release-it --ci --verbose --no-increment"
},
"repository": {
"type": "git",
"url": "git@gitlab.com:chia-blockchain/packages/chia-client.git"
},
"keywords": [
"chia",
"cryptocurrency"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/jest": "^25.2.1",
"@types/node": "^14.0.23",
"@types/yaml": "^1.9.7",
"jest": "^26.0.1",
"nock": "^12.0.3",
"release-it": "^14.7.0",
"ts-jest": "^25.5.1",
"typescript": "^3.8.3"
},
"dependencies": {
"axios": "^0.19.2",
"chia-utils": "^1.0.2",
"yaml": "2.0.0-5"
},
"jest": {
"roots": [
"<rootDir>/test",
"<rootDir>/src"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"restoreMocks": true,
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.json",
"isolatedModules": true
}
}
},
"directories": {
"test": "test"
}
}