forked from mojaloop/quoting-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 3.14 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
{
"name": "quoting-service",
"description": "Quoting Service hosted by a scheme",
"license": "Apache-2.0",
"version": "8.8.0-snapshot",
"author": "Modusbox",
"contributors": [
"James Bush <james.bush@modusbox.com>",
"Georgi Georgiev <georgi.georgiev@modusbox.com>",
"Henk Kodde <henk.kodde@modusbox.com>",
"Miguel de Barros <miguel.debarros@modusbox.com>",
"Rajiv Mothilal <rajiv.mothilal@modusbox.com>",
"Steven Oderayi <steven.oderayi@modusbox.com>"
],
"repository": {
"type": "git",
"url": "git://github.com/mojaloop/quoting-service.git"
},
"bugs": "http://github.com/mojaloop/quoting-service/issues",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"jest-junit": {
"outputDirectory": "./test/results",
"outputName": "junit.xml"
},
"standard": {
"env": [
"jest"
]
},
"pre-commit": [
"standard",
"dep:check",
"test:unit"
],
"scripts": {
"start": "node src/index.js",
"test:unit": "jest --testMatch '**/test/unit/**/*.test.js'",
"test:coverage": "jest --coverage --coverageThreshold='{}' --testMatch '**/test/unit/**/*.test.js'",
"test:coverage-check": "jest --coverage --testMatch '**/test/unit/**/*.test.js'",
"test:junit": "jest --reporters=default --reporters=jest-junit --testMatch '**/test/unit/**/*.test.js'",
"lint": "eslint .",
"standard": "standard",
"regenerate": "yo swaggerize:test --framework hapi --apiPath './src/interface/swagger.json'",
"build": "docker build -t quoting-service:local -f ./Dockerfile ../",
"run": "docker run -p 3002:3002 --rm --link db:mysql quoting-service:local",
"package-lock": "docker run --rm -it quoting-service:local cat package-lock.json > package-lock.json",
"docker:up": "docker-compose -f docker-compose.yml -f docker-compose.base.yml up",
"docker:stop": "docker-compose -f docker-compose.yml -f docker-compose.base.yml stop",
"audit:resolve": "SHELL=sh resolve-audit",
"audit:check": "SHELL=sh check-audit",
"dep:check": "npx ncu -e 2",
"dep:update": "npx ncu -u"
},
"dependencies": {
"@hapi/good": "8.2.4",
"@hapi/hapi": "18.4.0",
"@mojaloop/central-services-error-handling": "8.6.2",
"@mojaloop/central-services-logger": "8.6.0",
"@mojaloop/central-services-shared": "8.7.1",
"@mojaloop/event-sdk": "8.6.2",
"@mojaloop/ml-number": "8.2.0",
"axios": "0.19.0",
"blipp": "4.0.1",
"eslint-config-standard": "14.1.0",
"good-console": "8.0.0",
"good-squeeze": "5.1.0",
"hapi-openapi": "1.2.6",
"json-rules-engine": "5.0.0",
"knex": "0.20.6",
"memory-cache": "0.2.0",
"mysql": "2.17.1",
"node-fetch": "2.6.0",
"parse-strings-in-object": "2.0.0",
"rc": "1.2.8"
},
"devDependencies": {
"@types/jest": "^24.0.25",
"eslint": "6.8.0",
"jest": "24.9.0",
"jest-junit": "10.0.0",
"npm-audit-resolver": "2.1.0",
"npm-check-updates": "4.0.1",
"nyc": "15.0.0",
"pre-commit": "1.2.2",
"proxyquire": "2.1.3",
"sinon": "8.0.4",
"standard": "14.3.1",
"swagmock": "1.0.0"
},
"generator-swaggerize": {
"version": "4.11.0"
},
"main": "src/server.js"
}