-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 816 Bytes
/
package.json
File metadata and controls
21 lines (21 loc) · 816 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "my-test-repo",
"version": "1.0.0",
"scripts": {
"format": "prettier --write \"**/*.ts\"",
"add-release-label-to-pr-and-linked-issues": "ts-node ./.github/scripts/add-release-label-to-pr-and-linked-issues.ts",
"check-pr-has-required-labels": "ts-node ./.github/scripts/check-pr-has-required-labels.ts",
"close-release-bug-report-issue": "ts-node ./.github/scripts/close-release-bug-report-issue.ts",
"check-template-and-add-labels": "ts-node ./.github/scripts/check-template-and-add-labels.ts"
},
"devDependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@tsconfig/node16": "^1.0.3",
"@types/node": "^17.0.21",
"prettier": "^2.7.1",
"prettier-plugin-sort-json": "^1.0.0",
"ts-node": "^10.5.0",
"typescript": "~4.4.0"
}
}