-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
50 lines (50 loc) · 1.22 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
{
"name": "@celonis/content-cli",
"version": "0.11.1",
"description": "CLI Tool to help manage content in Celonis EMS",
"main": "content-cli.js",
"bin": {
"content-cli": "./content-cli.js"
},
"author": "Celonis SE",
"license": "MIT",
"homepage": "https://github.com/celonis/content-cli",
"scripts": {
"build": "./node_modules/.bin/tsc && cp package.json dist/package.json",
"lint": "tslint -p .",
"test": "jest"
},
"dependencies": {
"@datadog/datadog-ci": "^0.17.12",
"adm-zip": "^0.4.14",
"axios": "1.6.2",
"commander": "^6.0.0",
"form-data": "4.0.0",
"openid-client": "^5.6.1",
"hpagent": "^1.2.0",
"semver": "^7.3.2",
"valid-url": "^1.0.9",
"winston": "^3.1.0",
"yaml": "2.2.2"
},
"devDependencies": {
"@types/adm-zip": "^0.4.34",
"@types/jest": "29.5.11",
"@types/node": "20.10.4",
"jest": "29.7.0",
"lint-staged": "^9.5.0",
"prettier": "^1.19.1",
"ts-jest": "29.1.1",
"ts-node": "10.9.2",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"tslint-consistent-codestyle": "^1.16.0",
"typescript": "5.3.3"
},
"lint-staged": {
"src/**/*.ts": [
"prettier --write",
"git add"
]
}
}