forked from mojaloop/central-settlement
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 3.58 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
{
"name": "central-settlement",
"description": "Central settlements hosted by a scheme to record and make settlements.",
"version": "9.2.2",
"license": "Apache-2.0",
"private": false,
"author": "ModusBox",
"contributors": [
"Georgi Georgiev <[email protected]>",
"Valentin Genev <[email protected]>",
"Deon Botha <[email protected]>",
"Miguel de Barros <[email protected]>",
"Rajiv Mothilal <[email protected]>",
"Lazola Lucas <[email protected]>"
],
"repository": {
"type": "git",
"url": "git://github.com/mojaloop/central-settlement"
},
"bugs": "http://github.com/mojaloop/central-settlement/issues",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"dependencies": {
"@hapi/basic": "6.0.0",
"@hapi/boom": "9.0.0",
"@hapi/catbox-memory": "5.0.0",
"@hapi/good": "9.0.0",
"@hapi/hapi": "18.4.1",
"@hapi/inert": "5.2.2",
"@hapi/vision": "5.5.4",
"@mojaloop/central-ledger": "9.2.2",
"@mojaloop/central-services-database": "9.2.0",
"@mojaloop/central-services-error-handling": "9.1.0",
"@mojaloop/central-services-health": "9.2.0",
"@mojaloop/central-services-logger": "9.1.0",
"@mojaloop/central-services-shared": "9.3.0",
"@mojaloop/central-services-stream": "9.2.0",
"@mojaloop/ml-number": "8.2.0",
"@now-ims/hapi-now-auth": "2.0.1",
"async": "3.2.0",
"async-retry": "1.3.1",
"blipp": "4.0.1",
"hapi-auth-bearer-token": "6.2.1",
"hapi-openapi": "1.2.6",
"hapi-swagger": "11.1.0",
"mustache": "4.0.0",
"parse-strings-in-object": "2.0.0",
"rc": "1.2.8",
"uuid4": "1.1.4"
},
"devDependencies": {
"@hapi/joi": "16.1.8",
"bluebird": "3.7.2",
"eslint": "6.8.0",
"faucet": "0.0.1",
"get-port": "5.1.1",
"node-fetch": "2.6.0",
"nodemon": "2.0.2",
"npm-audit-resolver": "2.2.0",
"npm-check-updates": "4.0.4",
"nyc": "15.0.0",
"pre-commit": "1.2.2",
"proxyquire": "2.1.3",
"rewire": "4.0.1",
"sinon": "9.0.0",
"standard": "14.3.1",
"swagmock": "1.0.0",
"tap-xunit": "2.4.1",
"tape": "4.13.2",
"tapes": "4.1.0"
},
"pre-commit": [
"standard",
"dep:check",
"test"
],
"scripts": {
"start": "run-p start:api",
"start:api": "node src/api/index.js",
"watch:api": "nodemon src/api/index.js",
"regenerate": "yo swaggerize:test --framework hapi --apiPath './src/interface/swagger.yaml'",
"standard": "standard",
"lint": "eslint .",
"test": "npm run test:unit | faucet",
"test:all": "run-s test",
"test:unit": "tape 'test/unit/**/*.js'",
"test:xunit": "tape 'test/unit/**/*.js' | tap-xunit",
"test:coverage": "nyc --reporter=lcov --reporter=text-summary tapes -- 'test/unit/**/**.test.js'",
"test:coverage-check": "npm run test:coverage && nyc check-coverage",
"test:int": "tape 'test/integration/**/*.test.js'",
"test:integration": "sh ./test/integration-runner.sh ./test/integration-runner.env",
"audit:resolve": "SHELL=sh resolve-audit",
"audit:check": "SHELL=sh check-audit",
"dep:check": "npx ncu -e 2",
"dep:update": "npx ncu -u"
},
"generator-swaggerize": {
"version": "4.1.0"
},
"main": "./server"
}