Files
javascript-action/package.json
T

36 lines
834 B
JSON
Raw Permalink Normal View History

2019-09-11 01:44:28 -04:00
{
"name": "javascript-action",
"version": "1.0.0",
"description": "JavaScript Action Template",
"main": "index.js",
"scripts": {
2019-09-11 02:21:19 -04:00
"lint": "eslint index.js",
2020-07-17 08:34:34 -04:00
"prepare": "ncc build index.js -o dist --source-map",
"test": "jest",
"all": "npm run lint && npm run prepare && npm run test"
2019-09-11 01:44:28 -04:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/javascript-action.git"
},
"keywords": [
"GitHub",
"Actions",
"JavaScript"
],
2020-07-17 08:34:34 -04:00
"author": "",
2019-09-11 01:44:28 -04:00
"license": "MIT",
"bugs": {
"url": "https://github.com/actions/javascript-action/issues"
},
"homepage": "https://github.com/actions/javascript-action#readme",
"dependencies": {
2019-10-22 22:09:30 -04:00
"@actions/core": "^1.1.1"
2019-09-11 01:44:28 -04:00
},
"devDependencies": {
2020-07-17 08:34:34 -04:00
"@zeit/ncc": "^0.22.3",
"eslint": "^7.4.0",
"jest": "^26.1.0"
2019-09-11 01:44:28 -04:00
}
}