-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
73 lines (73 loc) · 2.29 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
{
"name": "@mojaloop/object-store-lib",
"version": "12.0.4",
"description": "Mojaloop library for common object store",
"license": "Apache-2.0",
"author": "ModusBox",
"contributors": [
"Georgi Georgiev <georgi.georgiev@modusbox.com>",
"Miguel de Barros <miguel.debarros@modusbox.com>",
"Valentin Genev <valenting.genev@modusbox.com>",
"Lewis Daly <lewisd@crosslaketech.com>"
],
"repository": {
"type": "git",
"url": "git@github.com:mojaloop/object-store-lib.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"main": "src/index.js",
"pre-commit": [
"lint",
"dep:check"
],
"scripts": {
"lint": "standard",
"lint:fix": "standard --fix",
"pretest": "npm run lint",
"test": "npm run test:unit",
"test:unit": "npx jest --ci --collectCoverage=false --reporters=default",
"test:xunit": "JEST_JUNIT_OUTPUT_FILE=./test/results/junit.xml npm run test:unit -- --reporters=jest-junit",
"test:coverage": "npx jest --coverage --coverageThreshold='{}'",
"test:coverage-check": "npx jest --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": "npx standard-version --no-verify --releaseCommitMessageFormat 'chore(release): {{currentTag}} [skip ci]'",
"snapshot": "npx standard-version --no-verify --skip.changelog --prerelease snapshot --releaseCommitMessageFormat 'chore(snapshot): {{currentTag}}'"
},
"dependencies": {
"mongoose": "^8.9.3"
},
"devDependencies": {
"audit-ci": "^7.1.0",
"eslint": "9.17.0",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"npm-check-updates": "17.1.13",
"nyc": "17.1.0",
"replace": "^1.2.2",
"standard": "17.1.2",
"standard-version": "^9.5.0"
},
"peerDependencies": {
"@mojaloop/central-services-logger": ">=11.x.x"
},
"peerDependenciesMeta": {
"@mojaloop/central-services-logger": {
"optional": false
}
},
"standard": {
"env": [
"jest"
]
},
"standard-version": {
"scripts": {
"postchangelog": "replace '\\[mojaloop/#(\\d+)\\]\\(https://github.com/mojaloop/(.*)/issues/(\\d+)\\)' '[mojaloop/#$1](https://github.com/mojaloop/project/issues/$1)' CHANGELOG.md"
}
}
}