-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
70 lines (70 loc) · 2.75 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
{
"name": "@mojaloop/account-lookup-bc",
"version": "0.6.0",
"description": "mojaloop account lookup bounded context.",
"license": "Apache-2.0",
"homepage": "https://github.com/mojaloop/account-lookup-bc",
"private": true,
"bugs": {
"url": "https://github.com/mojaloop/account-lookup-bc/issues#readme"
},
"contributors": [
"Jose Antunes <[email protected]>",
"Rui Rocha <[email protected]>"
],
"engines": {
"node": ">=20.10.0"
},
"scripts": {
"prepare": "husky install",
"pre_commit_check": "npm run build && npm run lint && npm run test:unit",
"build": "npm run build -ws",
"watch": "npm run watch -ws --parallel -v",
"clean": "(npm run clean:dist || true) && npm run clean:npm",
"clean:npm": "(rm -Rf node_modules || true) && npm -ws run clean:npm",
"clean:dist": "(rm -Rf dist || true) && npm -ws run clean:dist",
"lint": "npm run lint -ws -p ",
"lint:fix": "npm run lint:fix -ws -p",
"pretest": "npm run build",
"test": "npm run test:unit && npm run test:integration",
"test:unit": "npm -ws --if-present run test:unit",
"test:integration": "jest --runInBand --forceExit --detectOpenHandles",
"posttest": "npm run coverage:merge && npm run coverage:gen-report",
"coverage:merge": "nyc merge ./coverage/ ./coverage/coverage.json",
"coverage:gen-report": "nyc report --reporter=lcov --reporter=text --temp-dir=./coverage",
"audit:check": "npm run audit:check -ws --parallel -v",
"dep:check": "(ncu -e 2 || true) && npm -ws run dep:check",
"dep:update": "(ncu -e 2 -u || true) && npm -ws run dep:update",
"start:account-lookup-svc": "npm -w @mojaloop/account-lookup-bc-account-lookup-svc start",
"start:http-oracle-svc": "npm -w @mojaloop/account-lookup-bc-http-oracle-svc start"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.14.0",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"npm-check-updates": "^16.14.20",
"nyc": "^15.1.0",
"supertest": "^6.3.4",
"ts-jest": "^29.1.4",
"tslib": "^2.6.2",
"typescript": "^5.4.5"
},
"workspaces": [
"packages/public-types-lib",
"packages/domain-lib",
"packages/implementations-lib",
"packages/client-lib",
"packages/account-lookup-svc",
"packages/http-oracle-svc",
"packages/shared-mocks-lib",
"packages/*"
],
"engines": {
"node": ">=20.10.0"
}
}