env/package.json

38 lines
939 B
JSON
Raw Normal View History

2020-07-13 06:12:00 -04:00
{
"name": "github-env-vars-action",
2024-01-25 16:04:09 -05:00
"version": "2.8.0",
2020-07-13 06:12:00 -04:00
"description": "A GitHub Action to expose useful environment variables.",
"main": "index.js",
"scripts": {
2020-07-14 06:06:58 -04:00
"lint": "eslint *.js",
"test": "jest",
"build": "ncc build index.js"
2020-07-13 06:12:00 -04:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/FranzDiebold/github-env-vars-action.git"
},
"keywords": [
"Environment variables",
"GitHub Action"
],
"author": "Franz Diebold",
"license": "MIT",
"bugs": {
"url": "https://github.com/FranzDiebold/github-env-vars-action/issues"
},
"homepage": "https://github.com/FranzDiebold/github-env-vars-action#readme",
2024-01-25 16:04:09 -05:00
"engines": {
"node": ">=20"
},
2020-07-13 06:12:00 -04:00
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0"
2020-07-14 06:06:58 -04:00
},
"devDependencies": {
"@vercel/ncc": "^0.38.1",
"eslint": "^8.56.0",
2020-07-14 06:06:58 -04:00
"eslint-config-google": "^0.14.0",
"jest": "^29.7.0"
2020-07-13 06:12:00 -04:00
}
2022-09-10 06:23:43 -04:00
}