-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.01 KB
/
package.json
File metadata and controls
31 lines (31 loc) · 1.01 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
{
"name": "@sap-ux/odata-cli",
"version": "0.17.59",
"description": "Simple example CLI uing the @sap-ux/axios-extension module to fetch metadata and annotations from an SAP system.",
"license": "Apache-2.0",
"private": true,
"main": "dist/index.js",
"scripts": {
"start": "node -r dotenv/config dist/index.js dotenv_config_path=./.env/env.properties",
"build": "pnpm clean && tsc",
"watch": "tsc --watch",
"clean": "rimraf --glob dist coverage tsconfig.tsbuildinfo",
"format": "prettier --write '**/*.{js,json,ts,yaml,yml}' --ignore-path ../../../.prettierignore",
"lint": "eslint",
"lint:fix": "eslint --fix"
},
"dependencies": {
"@sap-ux/axios-extension": "workspace:*",
"@sap-ux/btp-utils": "workspace:*",
"@sap-ux/logger": "workspace:*",
"dotenv": "17.4.2",
"fast-xml-parser": "5.7.0"
},
"files": [
"dist",
"LICENSE"
],
"engines": {
"node": ">=20.x"
}
}