-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
86 lines (86 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
{
"name": "@mojaloop/database-lib",
"version": "11.1.0",
"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:coverage": "npx nyc --reporter=lcov --reporter=text-summary tapes -- 'test/unit/**/**.test.js'",
"test:coverage-check": "npm run test:coverage && nyc check-coverage",
"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.0.2",
"knex": "3.1.0",
"lodash": "4.17.21",
"mysql": "2.18.1"
},
"overrides": {
"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",
"yargs-parser": "18.1.1",
"markdown-it": "12.3.2"
},
"widdershins": {
"swagger2openapi": "7.0.8",
"yargs-parser": "13.1.2",
"markdown-it": "12.3.2"
}
}
}
},
"devDependencies": {
"@mojaloop/sdk-standard-components": ">=19.x.x",
"audit-ci": "^7.1.0",
"npm-check-updates": "17.1.11",
"nyc": "17.1.0",
"pre-commit": "1.2.2",
"proxyquire": "2.1.3",
"sinon": "19.0.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/"
}
}