This repository was archived by the owner on Jul 22, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.37 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
{
"name": "github-actions-pr-is-linked-to-work-item",
"version": "0.0.1",
"private": true,
"description": "GitHub action to check if a PR is linked to a work item in Azure DevOps",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write \"**/*.ts\"",
"format-check": "prettier --check \"**/*.ts\"",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map --license licenses.txt && echo {\"type\":\"commonjs\"} > dist/package.json",
"test": "jest",
"all": "npm run build && npm run package",
"clean": "shx rm -rf dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/typescript-action.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "Dan Hellem",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/node": "^24.10.1",
"@typescript-eslint/eslint-plugin": "^8.51.0",
"@typescript-eslint/parser": "^8.51.0",
"@vercel/ncc": "^0.38.1",
"eslint": "^9.39.1",
"eslint-plugin-github": "^6.0.0",
"eslint-plugin-jest": "^29.5.0",
"jest": "^30.2.0",
"js-yaml": "^4.1.1",
"prettier": "^3.7.4",
"shx": "^0.4.0",
"ts-jest": "^29.4.6",
"typescript": "^5.4.5",
"typescript-eslint": "^8.50.0"
}
}