-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.46 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
87
88
89
{
"name": "@dxfrontier/sync-mta-version",
"version": "1.0.2",
"license": "MIT",
"description": "The goal of sync-mta-version is to update the mta.yaml with the version from the package.json",
"repository": {
"type": "git",
"url": "git+https://github.com/dxfrontier/sync-mta-version.git"
},
"keywords": [
"Sync SAP CAP MTA",
"Synchronize package version"
],
"author": {
"name": "Daniel Dragolea",
"email": "dragolea@yahoo.com"
},
"maintainers": [
{
"name": "Daniel Dragolea",
"email": "dragolea@yahoo.com"
},
{
"name": "Sebastian Blessing",
"email": "sebastian.blessing@abs-gmbh.de"
},
{
"name": "Mathias von Kaiz",
"email": "mathias.von-kaiz@abs-gmbh.de"
}
],
"main": "./dist/cli.js",
"bin": {
"sync-mta-version": "./dist/cli.js"
},
"files": [
"./dist"
],
"scripts": {
"eslint:message": "echo 'ESLint started ...'",
"eslint": "eslint .",
"eslint:fix": "eslint . --fix",
"prettier:message": "echo 'Prettier started ...'",
"prettier": "prettier . --check",
"prettier:fix": "prettier . --write",
"check": "run-s eslint:message eslint prettier:message prettier",
"fix": "run-s eslint:message eslint:fix prettier:message prettier:fix",
"test": "jest",
"prepare": "husky",
"update:manually": "ts-node ./lib/cli.ts",
"update:manually:args": "ts-node ./lib/cli.ts -f mta.yaml -e ext-dev.mtaext ext-prod.mtaext -u /test/app",
"build:message": "echo 'Building (TS => JS), ./dist will be updated ...'",
"build:ts": "tsc",
"build": "run-s build:message build:ts"
},
"dependencies": {
"picocolors": "^1.1.0",
"tinyglobby": "^0.2.9",
"yaml": "^2.5.1",
"commander": "^12.1.0"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@commitlint/prompt-cli": "^19.5.0",
"@commitlint/types": "^19.5.0",
"@eslint/js": "^10.0.0",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.13",
"@types/node": "^22.7.5",
"eslint": "^9.12.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"npm-run-all": "^4.1.5",
"prettier": "3.3.3",
"ts-jest": "^29.2.5",
"typedoc": "^0.26.8",
"typescript-eslint": "^8.8.1",
"vitest": "^2.1.2"
},
"lint-staged": {
"**/*.ts": [
"npm run eslint:fix",
"npm run prettier:fix",
"npm run test --bail --findRelatedTests ./test"
]
}
}