32 lines
711 B
JSON
32 lines
711 B
JSON
{
|
|
"name": "javascript-action",
|
|
"version": "1.0.0",
|
|
"description": "JavaScript Action Template",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"lint": "eslint index.js",
|
|
"test": "eslint index.js && jest"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/actions/javascript-action.git"
|
|
},
|
|
"keywords": [
|
|
"GitHub",
|
|
"Actions",
|
|
"JavaScript"
|
|
],
|
|
"author": "GitHub",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/actions/javascript-action/issues"
|
|
},
|
|
"homepage": "https://github.com/actions/javascript-action#readme",
|
|
"dependencies": {
|
|
"@actions/core": "^1.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "^6.3.0",
|
|
"jest": "^24.9.0"
|
|
}
|
|
}
|