-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.97 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 1.97 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "grafana-github-actions",
"version": "1.0.0",
"private": true,
"description": "GitHub Actions used by Grafana for triaging issues",
"scripts": {
"test": "jest --silent",
"build": "yarn workspaces foreach -A --parallel run build",
"lint": "eslint -c .eslintrc --fix --ext .ts .",
"watch": "tsc --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/grafana/grafana-github-actions.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/grafana/grafana-github-actions/issues"
},
"homepage": "https://github.com/grafana/grafana-github-actions#readme",
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/exec": "^1.1.0",
"@actions/github": "^2.1.1",
"@betterer/betterer": "^5.3.7",
"@crowdin/crowdin-api-client": "^1.42.0",
"@octokit/graphql": "^4.8.0",
"@octokit/request-error": "^2.1.0",
"@octokit/webhooks": "^7.12.2",
"@types/lodash.escaperegexp": "^4.1.9",
"@types/micromatch": "^4.0.1",
"@types/semver": "^7.5.6",
"axios": "^0.19.2",
"dotenv": "^8.2.0",
"lodash": "^4.17.20",
"lodash.escaperegexp": "^4.1.2",
"micromatch": "^4.0.2",
"semver": "^7.5.4"
},
"devDependencies": {
"@types/chai": "^4.2.10",
"@types/jest": "^27.4.0",
"@types/node": "^20.9.2",
"@types/yargs": "^17.0.32",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"chai": "^4.2.0",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^4.2.3",
"jest": "^27.4",
"mock-fs": "^5.1.2",
"prettier": "2.5.1",
"ts-jest": "^27.1.3",
"ts-node": "^8.10.2",
"typescript": "^4.7.2",
"yargs": "^17.7.2"
},
"packageManager": "yarn@4.11.0",
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run build && git add \"**/*.js\""
}
},
"engines": {
"node": ">=22",
"yarn": ">=3.1.1",
"npm": "please-use-yarn"
},
"workspaces": {
"packages": [
"pr-checks",
"commands"
]
}
}