{ "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", "test": "jest", "all": "npm run lint && npm run prepare && npm run test" }, "repository": { "type": "git", "url": "git+https://github.com/actions/javascript-action.git" }, "keywords": [ "GitHub", "Actions", "JavaScript" ], "author": "", "license": "MIT", "bugs": { "url": "https://github.com/actions/javascript-action/issues" }, "homepage": "https://github.com/actions/javascript-action#readme", "dependencies": { "@actions/core": "^1.1.1" }, "devDependencies": { "@zeit/ncc": "^0.22.3", "eslint": "^7.4.0", "jest": "^26.1.0" } }