-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.12 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.12 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
{
"author": "VM Development Team",
"bugs": {
"url": "https://github.com/cisagov/setup-env-github-action/issues"
},
"dependencies": {
"@actions/core": "^2.0.3"
},
"description": "GitHub Action to populate tool versions for use in GitHub Actions workflows",
"devDependencies": {
"@github/local-action": "^7.0.1",
"@vercel/ncc": "^0.38.4"
},
"engines": {
"node": ">=20"
},
"exports": {
".": "./dist/index.js"
},
"homepage": "https://github.com/cisagov/setup-env-github-action",
"keywords": [
"GitHub",
"Actions",
"JavaScript"
],
"license": "CC0 1.0 Universal",
"name": "setup-env-github-action",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/cisagov/setup-env-github-action.git"
},
"scripts": {
"all": "npm run format:write && npm run package",
"bundle": "npm run format:write && npm run package",
"format:write": "pre-commit run prettier --all-files",
"package": "npx ncc build src/index.js -o dist --source-map --license licenses.txt",
"package:watch": "npm run package -- --watch"
},
"version": "1.2.1"
}