-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
36 lines (36 loc) · 1.05 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
{
"type": "module",
"name": "psrule-pipelines",
"displayName": "PSRule",
"description": "An extension for using PSRule within Azure Pipelines.",
"author": {
"name": "Microsoft Corporation"
},
"license": "SEE LICENSE IN LICENSE",
"homepage": "https://github.com/microsoft/PSRule-pipelines",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/PSRule-pipelines.git"
},
"bugs": {
"url": "https://github.com/microsoft/PSRule-pipelines/issues"
},
"dependencies": {
"azure-pipelines-task-lib": "^4.17.3"
},
"devDependencies": {
"@types/mocha": "^10.0.9",
"@types/node": "^20.16.5",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.12.2",
"esbuild": "^0.24.0",
"eslint": "^9.14.0",
"tfx-cli": "^0.17.0",
"typescript": "^5.6.3"
},
"scripts": {
"compile": "tsc -p ./",
"package": "tfx extension create --json --no-color --root out/dist --manifest-js extension.config.cjs --output-path out/extension --env",
"build": "node build.mjs"
}
}