forked from mojaloop/central-services-shared
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.38 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
{
"name": "@mojaloop/central-services-shared",
"version": "10.4.4",
"description": "Shared code for central services",
"main": "src/index.js",
"scripts": {
"test": "npm run test:unit | npx faucet",
"pretest": "standard",
"standard": "standard",
"test:unit": "tapes 'test/unit/**/**.test.js'",
"test:xunit": "npm run test:unit | 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",
"audit:resolve": "SHELL=sh resolve-audit --production",
"audit:check": "SHELL=sh check-audit --production",
"dep:check": "npx ncu -e 2",
"dep:update": "npx ncu -u"
},
"pre-commit": [
"dep:check",
"standard",
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mojaloop/central-services-shared.git"
},
"keywords": [
"shared",
"central",
"services"
],
"author": "ModusBox",
"contributors": [
"ModusBox",
"Dwolla"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/mojaloop/central-services-shared/issues"
},
"homepage": "https://github.com/mojaloop/central-services-shared#readme",
"dependencies": {
"@hapi/catbox": "11.1.0",
"@hapi/catbox-memory": "5.0.0",
"@mojaloop/central-services-error-handling": "10.4.1",
"@mojaloop/central-services-logger": "10.4.0",
"@mojaloop/central-services-metrics": "9.5.0",
"@mojaloop/event-sdk": "10.4.0",
"ajv": "6.12.2",
"ajv-keywords": "3.4.1",
"axios": "0.19.2",
"base64url": "3.0.1",
"clone": "2.1.2",
"data-urls": "2.0.0",
"immutable": "3.8.2",
"lodash": "4.17.15",
"mustache": "4.0.1",
"openapi-backend": "3.5.1",
"raw-body": "2.4.1"
},
"devDependencies": {
"@hapi/hapi": "19.1.1",
"@hapi/joi": "17.1.1",
"@mojaloop/sdk-standard-components": "10.3.2",
"chance": "1.1.6",
"faucet": "0.0.1",
"npm-audit-resolver": "2.2.0",
"npm-check-updates": "7.0.1",
"nyc": "15.1.0",
"pre-commit": "1.2.2",
"proxyquire": "2.1.3",
"rc": "1.2.8",
"rewire": "5.0.0",
"sinon": "9.0.2",
"standard": "14.3.4",
"tap-xunit": "2.4.1",
"tape": "5.0.1",
"tapes": "4.1.0",
"uuid4": "2.0.2"
},
"standard": {
"ignore": []
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}