-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.49 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
{
"name": "azure-devops-work-item-link-enforcer-and-linker",
"version": "2.0.0",
"private": true,
"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 ",
"main": "dist/index.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 lib/main.js -o dist",
"all": "npm run build && npm run format && npm run package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joshjohanning/azdo_commit_message_validator.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "dc AG",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.9.1",
"@actions/github": "^5.0.3",
"azure-devops-node-api": "^11.1.1",
"node-fetch": "^2.6.6"
},
"devDependencies": {
"@types/mocha": "^9.1.1",
"@types/node": "^18.0.0",
"@types/node-fetch": "^2.6.2",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"@vercel/ncc": "^0.34.0",
"eslint": "^8.18.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-github": "^4.3.6",
"eslint-plugin-jest": "^26.5.3",
"js-yaml": "^4.1.0",
"nock": "^13.2.7",
"prettier": "2.7.1",
"typescript": "^4.7.4"
}
}