koinos-rpc
Version:
Typescript library to communicate with Koinos API via RPC
76 lines (75 loc) • 2.06 kB
JSON
{
"name": "koinos-rpc",
"version": "1.4.0",
"description": "Typescript library to communicate with Koinos API via RPC",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"lint": "eslint -c .eslintrc.json \"src/**\" \"test/**\" \"examples/**\" --fix",
"lint:ci": "eslint -c .eslintrc.json \"src/**\" \"test/**\" \"examples/**\"",
"test": "yarn run test:unit && yarn run test:integration",
"test:unit": "mocha \"test/unit/**/*.test.ts\"",
"test:integration": "mocha \"test/integration/**/*.test.ts\"",
"build": "tsc -p tsconfig.build.json",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+ssh://git@gitlab.com/engrave/koinos/koinos-rpc.git"
},
"keywords": [
"koinos",
"rpc",
"koin",
"blockchain",
"smart",
"contract"
],
"author": "engrave",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/engrave/koinos/koinos-rpc/issues"
},
"homepage": "https://gitlab.com/engrave/koinos/koinos-rpc#readme",
"devDependencies": {
"@semantic-release/gitlab": "9.4.1",
"@types/chai": "4.3.3",
"@types/mocha": "9.1.1",
"@types/verror": "1.10.6",
"@typescript-eslint/eslint-plugin": "5.36.2",
"@typescript-eslint/parser": "5.36.2",
"base64url": "3.0.1",
"chai": "4.3.6",
"eslint": "8.22.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prefer-arrow": "1.2.3",
"eslint-plugin-prettier": "4.2.1",
"mocha": "10.0.0",
"prettier": "2.7.1",
"semantic-release": "19.0.5",
"ts-node": "10.9.1",
"typescript": "4.8.3"
},
"dependencies": {
"axios": "0.27.2",
"bs58": "5.0.0",
"protobufjs": "7.1.2",
"verror": "1.10.1"
},
"release": {
"branches": [
"master",
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/gitlab"
]
}
}