-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
53 lines (53 loc) · 1.87 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
{
"name": "@mojaloop/platform-shared-tools",
"version": "0.0.1",
"description": "mojaloop platform shared tools",
"license": "Apache-2.0",
"homepage": "https://github.com/mojaloop/platform-shared-tools",
"private": true,
"bugs": {
"url": "https://github.com/mojaloop/platform-shared-tools/issues#readme"
},
"contributors": [
"Pedro Sousa Barreto <[email protected]>"
],
"scripts": {
"pre_commit_check": "npm run build && npm run lint && npm run test:unit",
"build": "npm -ws --if-present run build",
"watch": "npm -ws --if-present run watch",
"clean": "npm run clean:dist; npm run clean:npm",
"clean:npm": "rm -Rf node_modules; npm -ws --if-present run clean:npm",
"clean:dist": "rm -Rf dist; npm -ws --if-present run clean:dist",
"lint": "npm -ws --if-present run lint",
"lint:fix": "npm -ws --if-present 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 --reporter=text --temp-dir=./coverage",
"test:integration": "jest",
"audit:check": "npm audit",
"audit:resolve": "npm audit fix",
"dep:check": "ncu -e 2; npm -ws --if-present run dep:check",
"dep:update": "ncu -e 2 -u; npm -ws --if-present run dep:update"
},
"devDependencies": {
"@types/jest": "^29.4.0",
"@types/node": "^18.11.19",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"eslint": "^8.33.0",
"husky": "^8.0.3",
"jest": "^29.4.1",
"npm-check-updates": "^16.6.3",
"nyc": "^15.1.0",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
},
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=18.13.0"
}
}