-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.54 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.54 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
{
"name": "@sap_oss/automated-usage-tracking-tool",
"version": "1.1.4",
"description": "Automated usage tracking tool is a user-centric data collection tool, using a Customer Data Cloud tenant, that tracks the usage of CX IAS's automation tools, generates comprehensive reports for evaluating tool effectiveness and improvements.",
"main": "dist/cli/index.js",
"browser": "dist/web/index.js",
"module": "dist/web/index.js",
"types": "dist/cli/index.d.ts",
"scripts": {
"build": "npm run build:cli && npm run build:web",
"build:cli": "tsc --build src/cli",
"build:web": "tsc --build src/web",
"release": "npm install && npm run build",
"lint": "eslint ./src",
"test": "vitest --root src --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SAP/automated-usage-tracking-tool.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/SAP/automated-usage-tracking-tool/issues"
},
"homepage": "https://github.com/SAP/automated-usage-tracking-tool#readme",
"devDependencies": {
"eslint": "^9.37.0",
"globals": "^16.4.0",
"typescript": "^5.9.3",
"prettier": "^3.6.2",
"@types/node": "24.7.2",
"@types/node-fetch": "^2.6.13",
"vitest": "^3.2.4",
"@vitest/coverage-v8": "^3.2.4",
"mock-stdin": "^1.0.0",
"jsdom": "^27.0.0"
},
"dependencies": {
"dotenv": "^17.2.3",
"ts-node": "^10.9.2",
"uuid": "^13.0.0"
},
"contributors": [
"Bruno Santos",
"Daniel Cabral",
"Luís Marques",
"Nelson Sousa"
]
}