-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
45 lines (45 loc) · 1.18 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
{
"name": "setup-p4",
"version": "0.1.0",
"description": "Download p4 and run p4 commands within GitHub Actions",
"main": "dist/index.js",
"scripts": {
"build": "npx @vercel/ncc build index.js --license LICENSE -o dist && echo \"$(cat .github/license.tpl)\n\n$(cat dist/LICENSE)\" > LICENSE && rm dist/LICENSE && npx convert-action",
"test": "jest --",
"coverage": "jest --collectCoverage --",
"lint": "eslint index.js",
"format": "prettier --write index.js"
},
"engines": {
"node": ">=20.0.0 <21.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/perforce/setup-p4.git"
},
"keywords": [
"GitHub",
"Actions",
"Perforce",
"Helix Core",
"p4"
],
"author": "Perforce Software",
"license": "See LICENSE file",
"bugs": {
"url": "https://github.com/perforce/setup-p4/issues"
},
"homepage": "https://github.com/perforce/setup-p4",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/tool-cache": "^2.0.1",
"shelljs": "^0.8.5",
"uuid": "^9.0.0"
},
"devDependencies": {
"@vercel/ncc": "^0.38.1",
"jest": "^29.7.0",
"eslint": "^8.54.0",
"prettier": "^3.1.0"
}
}