-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.89 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 2.89 KB
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
{
"name": "@mojaloop/database-lib",
"version": "11.3.7",
"description": "Shared database code for central services",
"main": "src/index.js",
"license": "Apache-2.0",
"contributors": [
"ModusBox"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mojaloop/database-lib.git"
},
"keywords": [
"database",
"migrations",
"central",
"services"
],
"pre-commit": [
"standard",
"dep:check",
"test"
],
"scripts": {
"pretest": "npm run lint",
"standard": "npx standard",
"standard:fix": "npx standard --fix",
"lint": "npm run standard",
"lint:fix": "npm run standard:fix",
"test": "npm run test:unit:spec",
"test:unit": "npx tape 'test/unit/**/*.test.js'",
"test:unit:spec": "npm run test:unit | tap-spec",
"test:xunit": "npm run test:unit | tap-xunit > ./test/results/xunit.xml",
"test:int": "npx jest test/integration/database.test.js --testTimeout=30000",
"test:coverage": "npx nyc --reporter=lcov --reporter=text-summary tapes -- 'test/unit/**/**.test.js'",
"test:coverage-check": "npm run test:coverage && nyc check-coverage",
"test:functional": "echo 'No functional tests defined'",
"test:integration": "./test/scripts/test-integration.sh",
"audit:fix": "npm audit fix",
"audit:check": "npx audit-ci --config ./audit-ci.jsonc",
"dep:check": "npx ncu -e 2",
"dep:update": "npx ncu -u",
"release": "standard-version --releaseCommitMessageFormat 'chore(release): {{currentTag}} [skip ci]'"
},
"dependencies": {
"@mojaloop/central-services-error-handling": "13.1.6",
"async-exit-hook": "^2.0.1",
"knex": "3.2.9",
"mysql": "^2.18.1",
"mysql2": "^3.22.0"
},
"overrides": {
"form-data": "4.0.4",
"tar": "6.2.1",
"@mojaloop/ml-schema-transformer-lib": {
"@mojaloop/central-services-shared": {
"shins": {
"ajv": "6.12.3",
"ejs": "3.1.10",
"sanitize-html": "2.12.1",
"markdown-it": "12.3.2"
},
"widdershins": {
"swagger2openapi": "7.0.8",
"markdown-it": "12.3.2"
}
}
},
"glob": {
"10.4.5": "10.5.0"
},
"cross-spawn": "7.0.6",
"trim": "0.0.3",
"undici": "6.23.1",
"immutable": "5.1.5",
"yargs-parser": "21.1.1",
"validator": "13.15.22",
"fast-xml-parser": "5.5.6",
"qs": "6.14.2",
"axios": "1.13.6",
"ajv": "6.14.0",
"brace-expansion": "2.0.3",
"lodash": "4.18.0"
},
"devDependencies": {
"audit-ci": "^7.1.0",
"jest": "^30.3.0",
"npm-check-updates": "20.0.2",
"nyc": "18.0.0",
"pre-commit": "1.2.2",
"proxyquire": "2.1.3",
"sinon": "21.1.2",
"standard": "17.1.2",
"standard-version": "9.5.0",
"tap-spec": "5.0.0",
"tap-xunit": "2.4.1",
"tape": "5.9.0",
"tapes": "4.1.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}