javascript-action/package.json

36 lines
806 B
JSON
Raw Normal View History

2019-09-11 05:44:28 +00:00
{
"name": "javascript-action",
"version": "1.0.0",
"description": "JavaScript Action Template",
"main": "index.js",
"scripts": {
2019-09-11 06:21:19 +00:00
"lint": "eslint index.js",
2019-10-23 01:51:21 +00:00
"package": "ncc build index.js -o dist",
2019-09-11 06:21:19 +00:00
"test": "eslint index.js && jest"
2019-09-11 05:44:28 +00:00
},
"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": {
2019-10-23 01:51:21 +00:00
"@actions/core": "^1.1.1",
"dist": "^0.1.2"
2019-09-11 05:44:28 +00:00
},
"devDependencies": {
2019-10-23 01:51:21 +00:00
"@zeit/ncc": "^0.20.5",
2019-09-11 06:21:19 +00:00
"eslint": "^6.3.0",
2019-09-11 05:44:28 +00:00
"jest": "^24.9.0"
}
}