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