{ "name": "create-release", "version": "1.0.0", "description": "Create a release", "main": "dist/index.js", "scripts": { "lint": "eslint \"src/**.js\" \"tests/**.js\" --fix", "test": "eslint \"src/**.js\" \"tests/**.js\" && jest --coverage", "test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand", "build": "ncc build src/main.js", "precommit": "npm run build && git add dist/" }, "repository": { "type": "git", "url": "git+https://github.com/actions/create-release" }, "keywords": [ "actions", "node" ], "author": "GitHub", "license": "MIT", "dependencies": { "@actions/core": "^1.0.0", "@actions/exec": "^1.0.0", "@actions/github": "^2.2.0" }, "devDependencies": { "@zeit/ncc": "^0.20.4", "eslint": "^5.13.0", "eslint-config-airbnb": "^17.1.0", "eslint-config-prettier": "^3.6.0", "eslint-plugin-import": "^2.16.0", "eslint-plugin-jsx-a11y": "^6.2.1", "eslint-plugin-prettier": "^2.7.0", "eslint-plugin-react": "^7.12.4", "jest": "^24.8.0", "prettier": "^1.16.4", "husky": "^3.0.5" }, "jest": { "testEnvironment": "node", "collectCoverageFrom": [ "src/create-release.js" ], "coverageThreshold": { "global": { "branches": 80, "functions": 80, "lines": 80, "statements": 80 } } } }