-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.72 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.72 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
51
52
53
54
55
56
57
58
{
"name": "setup-build-scan",
"version": "1.0.0",
"private": true,
"description": "Sets up build scan support in your GitHub Actions workflow.",
"main": "dist/index.js",
"scripts": {
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"copy-resources": "cp ./src/resources/*.* ./dist/resources",
"compile": "ncc build src/main.ts --out dist",
"build": "npm run check && npm run compile && npm run copy-resources",
"check": "npm run format && npm run lint",
"test": "jest"
},
"engines": {
"node": "20.x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bmuschko/setup-build-scan.git"
},
"author": "Benjamin Muschko",
"keywords": [
"github",
"actions",
"github-actions",
"gradle",
"build-scan"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/bmuschko/setup-build-scan/issues"
},
"homepage": "https://github.com/bmuschko/setup-build-scan/README.md",
"dependencies": {
"@actions/core": "1.10.1",
"@actions/exec": "1.1.1",
"@types/lodash": "4.17.4",
"eta": "^3.4.0",
"lodash": "4.17.21",
"string-argv": "^0.3.2"
},
"devDependencies": {
"@jest/globals": "29.7.0",
"@types/jest": "29.5.12",
"@types/node": "20.14.0",
"@vercel/ncc": "0.38.1",
"eslint-plugin-github": "5.0.1",
"eslint-plugin-jest": "28.5.0",
"jest": "29.7.0",
"prettier": "3.3.0",
"tmp-promise": "^3.0.3",
"ts-jest": "29.1.4",
"typescript": "5.4.5"
}
}