package.json 511 B

123456789101112131415161718192021
  1. {
  2. "private": true,
  3. "main": "lib/main.js",
  4. "scripts": {
  5. "build": "tsc",
  6. "lint": "standard --parser @typescript-eslint/parser --plugin @typescript-eslint/eslint-plugin **/*.ts"
  7. },
  8. "dependencies": {
  9. "@actions/core": "^1.0.0",
  10. "@actions/github": "^1.0.0"
  11. },
  12. "devDependencies": {
  13. "@types/node": "^12.0.4",
  14. "@typescript-eslint/eslint-plugin": "^2.0.0",
  15. "@typescript-eslint/parser": "^2.0.0",
  16. "acorn": "^7.0.0",
  17. "standard": "^14.1.0",
  18. "typescript": "^3.5.1"
  19. }
  20. }