-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
34 lines (34 loc) · 1.08 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
{
"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": "^3.3.1"
},
"devDependencies": {
"@types/mocha": "^9.1.1",
"@types/node": "^18.7.13",
"@types/q": "^1.5.5",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"esbuild": "^0.15.5",
"eslint": "^8.22.0",
"typescript": "^4.8.2"
},
"scripts": {
"compile": "tsc -p ./",
"package": "tfx extension create --json --no-color --root out/dist --manifest-globs vss-extension.json --output-path out/extension"
}
}