forked from SAP/project-piper-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.46 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "project-piper-action",
"version": "0.0.1",
"description": "CI/CD tooling for the SAP Ecosystem",
"main": "dist/index.js",
"scripts": {
"lint": "eslint src/**/*.ts test/**/*.ts",
"lint:ci": "eslint src/**/*.ts test/**/*.ts --format json-relative --output-file reports/eslint-report.json",
"dist:build": "ncc build src/main.ts -o dist --source-map --license licenses.txt",
"dist:update": "npm run dist:build && git add dist/** && git commit -m 'update dist folder' && git push",
"test": "jest",
"test:ci": "JEST_JUNIT_OUTPUT_DIR=reports/ JEST_JUNIT_OUTPUT_NAME=TEST-jest.xml jest --ci --reporters=default --reporters=jest-junit --reporters=jest-sonar --coverageReporters=text-summary --coverageReporters=cobertura --coverageReporters=lcovonly --coverageDirectory=reports/",
"all": "npm run lint && npm run prepare && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sap/project-piper-action.git"
},
"keywords": [
"GitHub",
"Actions",
"JavaScript",
"Continuous Integration",
"Continuous Delivery",
"CI/CD",
"SAP",
"SAP Cloud Platform"
],
"author": "SAP SE",
"contributors": [
"SAP SE <*@sap.com>"
],
"bugs": {
"url": "https://github.com/sap/project-piper-action/issues"
},
"homepage": "https://sap.github.io/jenkins-library/",
"dependencies": {
"@actions/artifact": "1.1.0",
"@actions/core": "1.10.0",
"@actions/exec": "1.1.1",
"@actions/github": "5.1.1",
"@actions/glob": "0.4.0",
"@actions/tool-cache": "2.0.1",
"@octokit/core": "4.2.0",
"@octokit/rest": "19.0.13",
"@octokit/types": "11.0.0",
"expect": "29.7.0",
"js-data": "3.0.11",
"node-fetch": "2.7.0",
"ts-node": "10.9.2",
"uuid": "9.0.0"
},
"devDependencies": {
"@types/jest": "29.5.12",
"@types/node-fetch": "2.6.11",
"@types/uuid": "9.0.3",
"@typescript-eslint/eslint-plugin": "6.7.2",
"@typescript-eslint/parser": "6.7.2",
"@vercel/ncc": "0.38.0",
"eslint": "8.57.0",
"eslint-config-standard-with-typescript": "39.1.1",
"eslint-formatter-json-relative": "0.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jest": "27.9.0",
"eslint-plugin-n": "16.1.0",
"eslint-plugin-promise": "6.1.1",
"jest": "29.7.0",
"jest-junit": "16.0.0",
"jest-sonar": "0.2.16",
"process": "0.11.10",
"ts-jest": "29.1.1",
"typescript": "5.2.2"
},
"engines": {
"node": ">=v16.17.1"
}
}