blob: 82cc6ef92bf9e0d4adcca79c9d587a744c8079cd [file] [log] [blame]
{
"name": "checks-action",
"version": "0.1.0",
"private": true,
"description": "GitHub Action which wraps calls to GitHub Checks API",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"lint": "eslint '**/*.js' '**/*.ts'",
"pack": "ncc build -m",
"test": "jest",
"format": "prettier --write '**/*.js' '**/*.ts'",
"all": "npm run build && npm run lint && npm run pack && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LouisBrunner/checks-action.git"
},
"keywords": [
"github",
"actions",
"checks"
],
"author": "Louis Brunner",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.2",
"@actions/github": "^2.1.1"
},
"devDependencies": {
"@types/jest": "^25.1.3",
"@types/node": "^13.7.7",
"@typescript-eslint/eslint-plugin": "^2.21.0",
"@typescript-eslint/parser": "^2.21.0",
"@zeit/ncc": "^0.21.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-jest": "^23.8.0",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^25.1.0",
"jest-circus": "^25.1.0",
"prettier": "^1.19.1",
"ts-jest": "^25.2.1",
"typescript": "^3.8.3"
}
}