env/package.json

36 lines
899 B
JSON
Raw Normal View History

2020-07-13 06:12:00 -04:00
{
"name": "github-env-vars-action",
2022-01-17 07:58:17 -05:00
"version": "2.3.1",
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",
"dependencies": {
2022-01-17 07:57:49 -05:00
"@actions/core": "^1.6.0",
"@actions/github": "^5.0.0"
2020-07-14 06:06:58 -04:00
},
"devDependencies": {
2022-01-17 07:57:49 -05:00
"@vercel/ncc": "^0.33.1",
"eslint": "^8.7.0",
2020-07-14 06:06:58 -04:00
"eslint-config-google": "^0.14.0",
2022-01-17 07:57:49 -05:00
"jest": "^27.4.7"
2020-07-13 06:12:00 -04:00
}
}