generated from mojaloop/typescript-bc-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
59 lines (59 loc) · 2.2 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
{
"name": "@mojaloop/platform-shared-lib",
"version": "0.5.0",
"description": "mojaloop platform-shared-lib",
"license": "Apache-2.0",
"homepage": "https://github.com/mojaloop/platform-shared-lib",
"private": true,
"bugs": {
"url": "https://github.com/mojaloop/platform-shared-lib/issues#readme"
},
"contributors": [
"Pedro Sousa Barreto <pedrosousabarreto@gmail.com>"
],
"scripts": {
"prepare": "husky install",
"pre_commit_check": "npm run build && npm run lint && npm run test:unit",
"start": "npm -ws run start",
"build": "npm -ws run build",
"watch": "npm -ws --parallel run watch",
"clean": "npm run clean:dist; npm run clean:npm",
"clean:npm": "rm -Rf node_modules; npm -ws run clean:npm",
"clean:dist": "rm -Rf dist; npm -ws run clean:dist",
"pretest": "echo 'FIX ME'",
"standard": "npm -ws --parallel --no-progress --stream lint'",
"lint": "npm -ws --parallel run lint",
"lint:fix": "npm -ws --parallel run lint:fix",
"test": "npm run test:unit",
"test:unit": "npm -ws --if-present run test:unit",
"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 --temp-dir=./coverage",
"test:integration": "jest",
"audit:resolve": "npm audit fix",
"audit:check": "npm audit",
"dep:check": "ncu -e 2; npm -ws run dep:check",
"dep:update": "ncu -e 2 -u; npm -ws run dep:update"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.30",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"npm-check-updates": "^16.14.18",
"nyc": "^15.1.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.3"
},
"workspaces": [
"packages/messaging-types-lib",
"packages/observability-types-lib",
"packages/*"
],
"engines": {
"node": ">=20.10.0"
}
}