forked from omio-labs/pr-reviewer-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.53 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "action-git-diff-suggestions",
"version": "0.0.0",
"private": true,
"description": "GitHub action that takes a git patch and makes GitHub Code Review suggestions",
"main": "lib/main.js",
"scripts": {
"build": "yarn tsc",
"format": "yarn prettier --write **/*.ts",
"format-check": "yarn prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"dist": "yarn build && yarn ncc build",
"test": "yarn jest",
"all": "yarn build && yarn format && yarn lint && yarn test && yarn dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/getsentry/typescript-action.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "Sentry",
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"yarn eslint --fix",
"yarn prettier --write"
]
},
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^5.0.0"
},
"devDependencies": {
"@types/jest": "^26.0.10",
"@types/node": "^14.6.1",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"@vercel/ncc": "^0.24.0",
"eslint": "^7.7.0",
"eslint-config-sentry": "^1.43.0",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.4.2",
"jest-circus": "^26.4.2",
"js-yaml": "^3.13.1",
"lint-staged": "^10.2.13",
"prettier": "^2.1.1",
"ts-jest": "^26.3.0",
"typescript": "^4.0.2"
}
}