-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
106 lines (106 loc) · 2.9 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
{
"name": "five-bells-ledger",
"version": "21.2.5",
"description": "Five Bells ledger reference implementation",
"keywords": [
"interledger",
"five-bells",
"ilp"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "[email protected]:interledgerjs/five-bells-ledger.git"
},
"scripts": {
"start": "node src/app.js",
"start-prof": "node --prof --logfile=${LEDGER_V8_LOGFILE:-v8.log} src/app.js",
"lint": "eslint .",
"test": "mocha",
"coverage": "istanbul cover _mocha",
"report-coverage": "codecov",
"docs": "npm run docs:prep-intro && npm run docs:apidoc",
"docs:prep-intro": "scripts/build_docs.js",
"docs:apidoc": "apidoc -o apidoc-out -i src/controllers/",
"integration": "integration-loader && integration all",
"bump": "version-bump"
},
"engines": {
"node": ">=7.6.0"
},
"dependencies": {
"bignumber.js": "^4.0.1",
"canonical-json": "0.0.4",
"co": "^4.6.0",
"co-body": "^5.1.1",
"co-defer": "^1.0.0",
"co-emitter": "^0.2.3",
"deep-diff": "^0.3.4",
"eslint-plugin-standard": "^3.0.1",
"extensible-error": "^1.0.2",
"five-bells-condition": "^5.0.1",
"five-bells-shared": "^26.1.0",
"http-errors": "^1.6.2",
"jsonwebtoken": "^8.1.1",
"kcors": "^2.2.1",
"knex": "^0.14.4",
"koa": "^2.2.0",
"koa-compose": "^3.2.1",
"koa-compress": "^2.0.0",
"koa-cors": "0.0.16",
"koa-json-error": "^3.1.2",
"koa-passport": "^3.0.0",
"koa-riverpig": "^2.0.0",
"koa-router": "^7.1.1",
"koa-static": "^3.0.0",
"lodash": "^4.17.4",
"methods": "^1.1.2",
"moment": "^2.19.3",
"passport-anonymous": "^1.0.1",
"passport-client-certificate": "^0.1.1",
"passport-http": "^0.3.0",
"passport-http-signature": "^1.0.0",
"passport-strategy": "^1.0.0",
"pg-migrator": "^1.0.5",
"priorityqueuejs": "^1.0.0",
"promise-retry": "^1.1.1",
"riverpig": "^1.1.2",
"spdy": "^3.4.4",
"tweetnacl": "^1.0.0-rc.1",
"ws": "^3.3.1"
},
"optionalDependencies": {
"mysql": "^2.13.0",
"pg": "^6.1.5",
"tedious": "^2.0.0"
},
"devDependencies": {
"apidoc": "^0.17.5",
"chai": "^3.5.0",
"chalk": "^1.1.3",
"codecov": "^2.1.0",
"ejs": "^2.5.6",
"eslint": "^3.19.0",
"eslint-config-standard": "^10.2.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-promise": "^3.5.0",
"five-bells-integration-test-loader": "^1.3.0",
"istanbul": "^1.1.0-alpha.1",
"mocha": "~3.2.0",
"mock-require": "^2.0.1",
"nock": "^9.0.13",
"sinon": "^2.1.0",
"sinon-chai": "^2.9.0",
"spec-xunit-file": "0.0.1-3",
"sqlite3": "^3.1.8",
"supertest": "^3.0.0",
"through2": "^2.0.3"
},
"config": {
"five-bells-integration-test-loader": {
"module": "five-bells-integration-test",
"repo": "interledgerjs/five-bells-integration-test"
}
}
}