-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.3 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
{
"type": "module",
"name": "@open-resource-discovery/github-release",
"private": true,
"version": "0.1.0",
"description": "A GitHub Action to manage changelog updates and releases.",
"repository": {
"type": "git",
"url": "git+https://github.com/open-resource-discovery/github-release"
},
"license": "Apache-2.0",
"author": "SAP SE",
"main": "index.js",
"scripts": {
"test": "node --experimental-vm-modules --no-warnings=ExperimentalWarning node_modules/jest/bin/jest.js --watchAll",
"test:ci": "node --experimental-vm-modules --no-warnings=ExperimentalWarning node_modules/jest/bin/jest.js --ci --collectCoverage",
"build": "tsc",
"eslint": "eslint . --fix",
"eslint:ci": "eslint .",
"prettier": "prettier --write \"**/*.{json,yml,yaml,md}\"",
"prettier:ci": "prettier --check \"**/*.{json,yml,yaml,md}\""
},
"dependencies": {
"@actions/core": "3.0.1",
"@actions/github": "9.1.1",
"tsx": "4.22.4"
},
"devDependencies": {
"@jest/globals": "30.4.1",
"@sap/eslint-config": "0.5.2",
"@tsconfig/node22": "22.0.5",
"@types/jest": "30.0.0",
"@types/node": "24.13.2",
"eslint": "10.5.0",
"jest": "30.4.2",
"jest-environment-node": "30.4.1",
"prettier": "3.8.4",
"ts-jest": "29.4.11",
"typescript": "5.9.3"
}
}