-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.45 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.45 KB
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
90
91
92
93
94
95
96
{
"name": "trm-core",
"version": "8.5.3",
"description": "TRM (Transport Request Manager) Core",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"changelog.txt",
"dist",
"!dist/test.js",
"!dist/test.js.map",
"!dist/test.d.ts",
"!dist/.env",
"!dist/dev_rfc.log"
],
"scripts": {
"cleanBuild": "rimraf dist/",
"build": "npm run cleanBuild && tsc --sourceMap false",
"prepublishOnly": "npm run build",
"postinstall": "node dist/scripts/checkEngine.js"
},
"keywords": [
"trm",
"abap"
],
"homepage": "https://www.trmregistry.com",
"repository": {
"type": "git",
"url": "git+https://github.com/RegestaItalia/trm-core.git"
},
"author": {
"name": "Simone Gaffurini",
"email": "simone.gaffurini@regestaitalia.it"
},
"license": "MIT",
"trmDependencies": {
"trm-server": "^5.2.0"
},
"dependencies": {
"@esm2cjs/normalize-url": "^8.0.0",
"@inquirer/prompts": "^7.8.1",
"@simonegaffurini/sammarksworkflow": "^1.3.2-fork",
"@xmldom/xmldom": "^0.9.8",
"adm-zip": "^0.5.10",
"axios": "^1.7.9",
"chalk": "^4.1.2",
"cli-progress": "^3.12.0",
"dotenv": "^17.2.2",
"email-validator": "^2.0.4",
"express": "^4.18.2",
"get-root-path": "^3.0.1",
"get-stack-trace": "^3.1.1",
"lodash": "^4.17.21",
"luxon": "^3.7.2",
"minimatch": "^10.0.1",
"node-cache": "^5.1.2",
"node-html-parser": "^7.0.1",
"node-r3trans": "^2.0.1",
"object-keys-normalizer": "^1.0.1",
"opener": "^1.5.2",
"parse-multipart-data": "^1.5.0",
"protocol-registry": "^2.0.0",
"semver": "^7.5.4",
"semver-sort": "^1.0.0",
"spdx-license-ids": "^3.0.13",
"trm-registry-types": "^2.1.0",
"uuid": "^9.0.1",
"xml-beautify": "^1.2.3",
"xml-js": "^1.6.11"
},
"peerDependencies": {
"trm-commons": "^3.5.1"
},
"devDependencies": {
"@types/adm-zip": "^0.5.0",
"@types/cli-progress": "^3.11.3",
"@types/debug": "^4.1.12",
"@types/express": "^4.17.17",
"@types/inquirer": "^9.0.3",
"@types/lodash": "^4.14.202",
"@types/luxon": "^3.7.1",
"@types/node": "^20.4.4",
"@types/opener": "^1.4.0",
"@types/semver": "^7.5.0",
"@types/semver-sort": "^0.0.1",
"@types/stack-trace": "^0.0.33",
"@types/uuid": "^9.0.8",
"rimraf": "^6.0.1",
"trm-commons": "^3.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.8.2"
},
"engines": {
"node": ">=22.12.0"
}
}