-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 2.09 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 2.09 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
{
"name": "azure-devops-work-item-link-enforcer-and-linker",
"version": "4.0.0",
"private": true,
"type": "module",
"description": "GitHub Action to enforce that each commit in a pull request be linked to an Azure DevOps work item and automatically link the pull request to each work item ",
"engines": {
"node": ">=24"
},
"main": "dist/index.js",
"scripts": {
"bundle": "npm run format:write && npm run package",
"ci-test": "npm run test:bash && NODE_OPTIONS='--experimental-vm-modules' npx jest --coverage",
"coverage": "npx @joshjohanning/make-coverage-badge-better --label-color '#333' --output-path ./badges/coverage.svg",
"format:write": "npx prettier --write .",
"format:check": "npx prettier --check .",
"lint": "npx eslint .",
"package": "npx @vercel/ncc build src/index.js -o dist --source-map --license licenses.txt",
"package:watch": "npm run package -- --watch",
"test": "npm run test:bash && NODE_OPTIONS='--experimental-vm-modules' npx jest",
"test:bash": "./__tests__/action.test.sh",
"test:watch": "NODE_OPTIONS='--experimental-vm-modules' npx jest --watch",
"all": "npm run format:write && npm run lint && npm run ci-test && npm run coverage && npm run package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joshjohanning/azdo_commit_message_validator.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": {
"name": "Josh Johanning",
"email": "joshjohanning@github.com",
"url": "https://github.com/joshjohanning"
},
"license": "MIT",
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/github": "^9.0.0",
"azure-devops-node-api": "^15.1.2"
},
"devDependencies": {
"@joshjohanning/make-coverage-badge-better": "^1.0.1",
"@vercel/ncc": "^0.38.4",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-github": "^6.0.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.15.1",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.4.0",
"jest": "^30.3.0",
"prettier": "^3.8.1"
}
}