UNPKG

ilp

Version:

ILP client library for sending and receiving payments

85 lines (84 loc) 2.13 kB
{ "name": "ilp", "version": "14.1.0", "description": "ILP client library for sending and receiving payments", "main": "src/index.js", "scripts": { "build": "tsc --project .", "lint": "tslint --project .", "lint:fix": "tslint --fix --project .", "test": "istanbul test -- _mocha", "integration": "integration-loader && integration all" }, "engines": { "node": ">=8" }, "repository": { "type": "git", "url": "git+https://github.com/interledgerjs/ilp.git" }, "keywords": [ "interledger", "ilp", "payment request", "crypto", "condition", "payments" ], "author": "Interledger Team <info@interledger.org>", "license": "Apache-2.0", "bugs": { "url": "https://github.com/interledgerjs/ilp/issues" }, "homepage": "https://github.com/interledgerjs/ilp#readme", "dependencies": { "@types/express": "^4.16.0", "@types/lodash.camelcase": "^4.3.4", "@types/node": "^10.9.3", "@types/node-fetch": "^2.1.2", "bignumber.js": "^7.2.1", "ilp-logger": "^1.0.2", "ilp-packet": "^3.0.0", "ilp-plugin-btp": "^1.2.1", "ilp-protocol-ildcp": "^2.0.0", "ilp-protocol-stream": "^1.8.0", "node-fetch": "^2.2.0" }, "devDependencies": { "chai": "^4.1.2", "eslint": "^5.4.0", "eslint-config-standard": "^11.0.0", "eslint-plugin-import": "^2.14.0", "eslint-plugin-node": "^7.0.1", "eslint-plugin-promise": "^4.0.0", "eslint-plugin-standard": "^3.1.0", "five-bells-integration-test-loader": "^1.5.3", "istanbul": "^0.4.5", "mocha": "^5.2.0", "tslint": "^5.11.0", "tslint-config-standard": "^7.1.0", "typescript": "^3.1.1" }, "config": { "five-bells-integration-test-loader": { "module": "five-bells-integration-test", "repo": "interledgerjs/five-bells-integration-test" } }, "nyc": { "check-coverage": true, "lines": 80, "statements": 80, "functions": 80, "branches": 80, "include": [ "src/**/*.js", "src/**/*/d.ts" ], "reporter": [ "lcov", "text-summary" ], "all": true } }