-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.09 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
{
"name": "automagically-action-execute",
"version": "1.0.0",
"private": true,
"main": "dist/index.js",
"type": "module",
"engineStrict": true,
"engines": {
"node": "20"
},
"scripts": {
"lint": "eslint **/*.ts --max-warnings=0",
"build": "tsc",
"test": "vitest",
"test:watch": "vitest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OctoMind-dev/automagically-azure-devops-task-execute.git"
},
"author": "OctoMind-dev",
"license": "MIT",
"dependencies": {
"azure-pipelines-task-lib": "^5.1.0",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@types/node": "^22.14.0",
"@types/q": "^1.5.8",
"@typescript-eslint/eslint-plugin": "^8.29.0",
"@typescript-eslint/parser": "^8.29.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.1",
"eslint-import-resolver-typescript": "^4.3.2",
"eslint-plugin-github": "^5.1.8",
"eslint-plugin-prettier": "^5.2.6",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"typescript": "^5.8.3",
"vite": "^6.2.5",
"vitest": "^3.1.1"
}
}