javascript-action/package.json

36 lines
852 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": {
"lint": "eslint .",
"prepare": "ncc build index.js -o dist --source-map --license licenses.txt",
"test": "jest",
2021-08-17 07:13:33 +00:00
"all": "npm run lint && npm run test && npm run prepare"
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": "",
2019-09-11 05:44:28 +00:00
"license": "MIT",
"bugs": {
"url": "https://github.com/actions/javascript-action/issues"
},
"homepage": "https://github.com/actions/javascript-action#readme",
"dependencies": {
"@actions/core": "^1.2.5"
2019-09-11 05:44:28 +00:00
},
"devDependencies": {
"@vercel/ncc": "^0.27.0",
"eslint": "^7.4.0",
2021-01-15 13:02:50 +00:00
"jest": "^26.6.3"
2019-09-11 05:44:28 +00:00
}
}