forked from mojaloop/account-lookup-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 4.3 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
{
"name": "account-lookup-service",
"description": "Account Lookup Service is used to validate Party and Participant lookups",
"version": "8.8.0",
"license": "Apache-2.0",
"author": "ModusBox",
"contributors": [
"Rajiv Mothilal <[email protected]>",
"Matt Kingston <[email protected]>",
"Lewis Daly <[email protected]>",
"Steven Oderayi <[email protected]>"
],
"repository": {
"type": "git",
"url": "git://github.com/mojaloop/account-lookup-service.git"
},
"bugs": "http://github.com/mojaloop/account-lookup-service/issues",
"config": {
"knex": "--knexfile ./config/knexfile.js"
},
"standard": {
"env": [
"jest"
]
},
"pre-commit": [
"standard",
"dep:check",
"test"
],
"scripts": {
"start": "node src/index.js server",
"start:all": "run-p start:api start:admin",
"start:api": "node src/index.js server --api",
"start:admin": "node src/index.js server --admin",
"standard": "standard",
"dev": "nodemon src/index.js server",
"test": "npm run test:unit",
"test:unit": "jest --testMatch '**/test/unit/**/*.test.js'",
"test:int": "jest --reporters=default --reporters=jest-junit --testMatch '**/test/integration/**/*.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'",
"test:integration": "./test/integration-runner.sh ",
"cover": "npx nyc --all report --reporter=lcov npm run test",
"lint": "eslint --ignore-path ../.eslintignore .",
"migrate": "run-s migrate:latest seed:run",
"migrate:latest": "knex $npm_package_config_knex migrate:latest",
"migrate:create": "knex migrate:make $npm_package_config_knex",
"migrate:rollback": "knex migrate:rollback $npm_package_config_knex",
"migrate:current": "knex migrate:currentVersion $npm_package_config_knex",
"seed:run": "knex seed:run $npm_package_config_knex",
"seed:create": "knex seed:make $npm_package_config_knex",
"regenerate": "yo swaggerize:test --framework hapi --apiPath './config/api_swagger.json'",
"build": "docker build -t account-lookup-service:local -f ./Dockerfile .",
"build:api": "docker build -t account-lookup-service-api:local -f ./api.Dockerfile .",
"build:admin": "docker build -t account-lookup-service-admin:local -f ./admin.Dockerfile .",
"run": "docker run -p 3000:3000 --rm --link db:mysql central-directory:local",
"package-lock": "docker run --rm -it central-directory:local cat package-lock.json > package-lock.json",
"generate-docs": "jsdoc -c jsdoc.json",
"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/basic": "5.1.1",
"@hapi/boom": "9.0.0",
"@hapi/good": "8.2.4",
"@hapi/hapi": "18.4.0",
"@hapi/inert": "5.2.2",
"@hapi/vision": "5.5.4",
"@mojaloop/central-services-database": "8.2.1",
"@mojaloop/central-services-error-handling": "8.6.2",
"@mojaloop/central-services-health": "8.3.0",
"@mojaloop/central-services-logger": "8.6.0",
"@mojaloop/central-services-metrics": "8.3.0",
"@mojaloop/central-services-shared": "8.7.1",
"@now-ims/hapi-now-auth": "2.0.0",
"blipp": "4.0.1",
"commander": "4.1.0",
"docdash": "1.1.1",
"hapi-auth-bearer-token": "6.2.1",
"hapi-openapi": "1.2.6",
"hapi-swagger": "10.3.0",
"json-rules-engine": "5.0.0",
"knex": "0.20.7",
"mustache": "3.2.1",
"mysql": "2.17.1",
"npm-run-all": "4.1.5",
"parse-strings-in-object": "2.0.0",
"rc": "1.2.8",
"uuid4": "1.1.4"
},
"devDependencies": {
"@types/jest": "24.0.25",
"eslint": "6.8.0",
"get-port": "5.0.0",
"jest": "24.9.0",
"jest-junit": "10.0.0",
"jsdoc": "3.6.3",
"nodemon": "2.0.2",
"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",
"tap-xunit": "2.4.1"
},
"generator-swaggerize": {
"version": "4.1.0"
}
}