UNPKG

3.43 kBJSONView Raw
1{
2 "name": "ilp-connector",
3 "version": "23.0.0",
4 "description": "ILP connector reference implementation",
5 "repository": {
6 "type": "git",
7 "url": "git@github.com:interledgerjs/ilp-connector.git"
8 },
9 "keywords": [
10 "interledger",
11 "five-bells",
12 "payments"
13 ],
14 "author": "Interledger Team <info@interledger.org>",
15 "license": "Apache-2.0",
16 "bugs": {
17 "url": "https://github.com/interledgerjs/ilp-connector/issues"
18 },
19 "main": "src/index.js",
20 "types": "src/index.d.ts",
21 "bin": {
22 "ilp-connector": "./src/index.js"
23 },
24 "scripts": {
25 "start": "node src/index.js",
26 "start-prof": "node --prof --logfile=${CONNECTOR_V8_LOGFILE:-v8.log} src/index.js",
27 "start:watch": "nodemon src/index.js",
28 "build": "npm run schema-to-tsd && npm run compile-ts",
29 "schema-to-tsd": "node scripts/build_schema_types",
30 "compile-ts": "tsc --project .",
31 "prepack": "npm run build",
32 "prepare": "npm run build",
33 "lint": "tslint --project . && eslint test/*.test.js test/mocks/ test/helpers/",
34 "test": "nyc mocha",
35 "report-coverage": "codecov",
36 "integration": "integration-loader && integration all",
37 "commitmsg": "commitlint -e $GIT_PARAMS"
38 },
39 "engines": {
40 "node": ">=6.6.0"
41 },
42 "dependencies": {
43 "ajv": "^6.1.1",
44 "bignumber.js": "^7.2.1",
45 "change-case": "^3.0.1",
46 "debug": "^3.1.0",
47 "extensible-error": "^1.0.2",
48 "ilp-compat-plugin": "^2.0.3",
49 "ilp-packet": "^3.0.7",
50 "ilp-protocol-ccp": "^1.1.1",
51 "ilp-protocol-ildcp": "^2.0.0",
52 "lodash": "^4.17.4",
53 "long": "^4.0.0",
54 "node-fetch": "^2.0.0",
55 "oer-utils": "^4.0.0",
56 "prom-client": "^11.1.1",
57 "reduct": "^3.3.1",
58 "riverpig": "^1.1.4",
59 "sax": "^1.2.4",
60 "source-map-support": "^0.5.0",
61 "through2": "^2.0.3"
62 },
63 "devDependencies": {
64 "@commitlint/cli": "^6.2.0",
65 "@commitlint/config-conventional": "^6.1.0",
66 "@justmoon/json-schema-to-markdown": "^1.0.0",
67 "@types/debug": "0.0.30",
68 "@types/lodash": "^4.14.91",
69 "@types/long": "^3.0.32",
70 "@types/node": "^11.10.5",
71 "@types/node-fetch": "^1.6.7",
72 "@types/sax": "^1.0.1",
73 "@types/source-map-support": "^0.4.0",
74 "@types/through2": "^2.0.33",
75 "chai": "^4.1.2",
76 "chai-as-promised": "^7.1.1",
77 "codecov": "^3.1.0",
78 "eslint": "^4.14.0",
79 "eslint-config-standard": "^11.0.0-beta.0",
80 "eslint-plugin-import": "^2.8.0",
81 "eslint-plugin-node": "^5.2.1",
82 "eslint-plugin-promise": "^3.6.0",
83 "eslint-plugin-standard": "^3.0.1",
84 "five-bells-integration-test-loader": "^1.5.3",
85 "husky": "^0.14.3",
86 "ilp-plugin-mirror": "^1.0.0",
87 "json-schema-to-typescript": "^5.2.2",
88 "mdast-util-inject": "^1.1.0",
89 "mocha": "^5.0.0",
90 "mock-require": "^3.0.1",
91 "mock-socket": "^7.1.0",
92 "nock": "^9.1.5",
93 "nodemon": "^1.17.3",
94 "nyc": "^11.4.1",
95 "remark-parse": "^5.0.0",
96 "remark-stringify": "^5.0.0",
97 "remark-toc": "^5.0.0",
98 "sinon": "^4.1.3",
99 "spec-xunit-file": "0.0.1-3",
100 "ts-node": "^4.1.0",
101 "tslint": "^5.13.1",
102 "tslint-config-standard": "^7.0.0",
103 "typescript": "^3.3.3333",
104 "unified": "^6.1.6"
105 },
106 "config": {
107 "five-bells-integration-test-loader": {
108 "module": "five-bells-integration-test",
109 "repo": "interledgerjs/five-bells-integration-test"
110 }
111 },
112 "nyc": {
113 "reporter": [
114 "lcov",
115 "text-summary"
116 ]
117 }
118}