raiden-api-sdk
Version:
SDK for interacting with the Raiden API
61 lines (60 loc) • 1.99 kB
JSON
{
"name": "raiden-api-sdk",
"version": "1.0.0",
"description": "SDK for interacting with the Raiden API",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"clean": "rimraf lib",
"prepare": "npm run build",
"build": "npm run clean && tsc --build tsconfig.prod.json && npm run extract",
"docs": "typedoc --out ./docs ./src --excludePrivate --excludeProtected",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"test": "jest",
"extract": "api-extractor run --local",
"lint": "eslint ./src/**/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/drdgvhbh/raiden-api-sdk.git"
},
"keywords": [
"payments",
"raiden"
],
"author": "Ryan Lee (drdgvhbh)",
"license": "MIT",
"bugs": {
"url": "https://github.com/drdgvhbh/raiden-api-sdk/issues"
},
"homepage": "https://github.com/drdgvhbh/raiden-api-sdk#readme",
"devDependencies": {
"@microsoft/api-extractor": "^7.3.4",
"@types/dotenv": "^6.1.1",
"@types/jest": "^24.0.16",
"@types/node": "^12.6.9",
"@types/snakecase-keys": "^2.1.0",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.13.0",
"coveralls": "^3.0.5",
"eslint": "^5.0.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.0",
"jest": "^24.8.0",
"prettier": "^1.18.2",
"rimraf": "^2.6.3",
"ts-jest": "^24.0.2",
"typedoc": "^0.15.0",
"typescript": "^3.5.3"
},
"dependencies": {
"camelcase-keys": "^6.0.1",
"dotenv": "^8.0.0",
"http-status-codes": "^1.3.2",
"raiden-swagger-sdk": "1.0.0",
"rxjs": "^6.5.2",
"snakecase-keys": "^3.1.0",
"xmlhttprequest": "^1.8.0"
}
}