env/package.json

36 lines
900 B
JSON
Raw Normal View History

2020-07-13 06:12:00 -04:00
{
"name": "github-env-vars-action",
"version": "2.3.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",
"dependencies": {
"@actions/core": "^1.2.7",
"@actions/github": "^4.0.0"
2020-07-14 06:06:58 -04:00
},
"devDependencies": {
"@vercel/ncc": "^0.28.5",
2021-05-02 13:53:19 -04:00
"eslint": "^7.25.0",
2020-07-14 06:06:58 -04:00
"eslint-config-google": "^0.14.0",
2020-11-26 14:44:14 -05:00
"jest": "^26.6.3"
2020-07-13 06:12:00 -04:00
}
}