-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 2.07 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
{
"name": "trm-core",
"version": "6.1.17",
"description": "TRM (Transport Request Manager) Core",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist",
"!dist/test.*"
],
"scripts": {
"cleanBuild": "rimraf dist/",
"build": "npm run cleanBuild && tsc --sourceMap false",
"test": "jest",
"prepublishOnly": "npm run build"
},
"keywords": [
"trm",
"abap"
],
"homepage": "https://www.trmregistry.com",
"repository": {
"type": "git",
"url": "https://github.com/RegestaItalia/trm-core.git"
},
"author": {
"name": "Simone Gaffurini",
"email": "[email protected]"
},
"license": "MIT",
"dependencies": {
"@esm2cjs/normalize-url": "^8.0.0",
"@inquirer/prompts": "^5.1.1",
"@simonegaffurini/sammarksworkflow": "^1.3.2-fork",
"adm-zip": "^0.5.10",
"axios": "^1.4.0",
"chalk": "^4.1.2",
"cli-progress": "^3.12.0",
"cli-table3": "^0.6.3",
"dotenv": "^16.3.1",
"email-validator": "^2.0.4",
"express": "^4.18.2",
"get-stack-trace": "^3.1.1",
"loading-cli": "^1.1.0",
"lodash": "^4.17.21",
"node-r3trans": "^1.4.4",
"object-keys-normalizer": "^1.0.1",
"opener": "^1.5.2",
"print-tree": "^0.1.5",
"protocol-registry": "^1.4.0",
"semver": "^7.5.4",
"semver-sort": "^1.0.0",
"spdx-license-ids": "^3.0.13",
"trm-registry-types": "^1.1.1",
"uuid": "^9.0.1",
"xml-beautify": "^1.2.3",
"xml-js": "^1.6.11",
"xmldom": "^0.6.0"
},
"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/jest": "^29.5.12",
"@types/lodash": "^4.14.202",
"@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",
"@types/xmldom": "^0.1.32",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"rimraf": "^6.0.1"
}
}