-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.32 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
{
"name": "trm-client",
"version": "4.1.1",
"description": "TRM (Transport Request Manager) Client",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist",
"!dist/test.*",
"!dist/*rfc.log"
],
"bin": {
"trm": "dist/index.js"
},
"scripts": {
"cleanBuild": "rimraf dist/",
"build": "npm run cleanBuild && tsc --sourceMap false",
"prepublishOnly": "npm run build"
},
"keywords": [
"trm",
"abap"
],
"homepage": "https://www.trmregistry.com",
"repository": {
"type": "git",
"url": "git+https://github.com/RegestaItalia/trm-client.git"
},
"author": {
"name": "Simone Gaffurini",
"email": "[email protected]"
},
"license": "MIT",
"trmDependencies": {
"trm-server": "^2.1.0"
},
"dependencies": {
"@esm2cjs/normalize-url": "^8.0.0",
"chalk": "^4.1.2",
"commander": "^11.0.0",
"dotenv": "^16.3.1",
"get-latest-version": "^5.1.0",
"get-root-path": "^2.0.2",
"ini": "^4.1.1",
"node-html-parser": "^6.1.13",
"semver": "^7.5.4",
"trm-core": "^6.2.2",
"trm-registry-types": "^1.2.0",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@types/ini": "^1.3.31",
"@types/node": "^20.4.8",
"@types/semver": "^7.5.3",
"@types/xml2js": "^0.4.11",
"rimraf": "^6.0.1"
}
}