-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.94 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.94 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
59
60
61
62
{
"name": "vsteam-azuredevops",
"version": "0.1.0",
"description": "Azure DevOps pipeline extension to run VSTeam PowerShell scripts natively and cross-platform",
"repository": {
"type": "git",
"url": "https://github.com/MethodsAndPractices/vsteam-azuredevops-ext.git"
},
"author": "Sebastian Schütze",
"license": "MIT",
"keywords": [
"AzureDevOps",
"DevOps",
"PowerShell",
"VSTeam",
"TFS",
"VSTS"
],
"bugs": {
"url": "https://github.com/MethodsAndPractices/vsteam-azuredevops-ext/issues"
},
"homepage": "https://github.com/MethodsAndPractices/vsteam-azuredevops-ext#readme",
"scripts": {
"initdev": "npm run initdev:npm",
"initdev:npm": "npm run initdev:npm:base && npm run initdev:npm:tasks",
"initdev:npm:base": "npm install --no-progress --no-update-notifier",
"initdev:npm:tasks": "glob-exec --parallel --foreach \"tasks/*/V*/tsconfig.json\" -- \"cd {{file.dir}} && npm install --no-update-notifier --no-progress\"",
"compile:tasks": "glob-exec \"tasks/*/V*/tsconfig.json\" -- \"tsc -b {{files.join(' ')}}\"",
"ostcompile:tasks": "npm run lint:tasks",
"lint:tasks": "glob-exec --parallel --foreach \"tasks/*/V*/tsconfig.json\" -- \"eslint {{file.dir}} --parser-options \"{'project':['{{file}}','tasks/*/V*/tsconfig.json']}\"",
"package:tasks": "tfx extension create --root . --output-path dist --manifest-globs vss-extension.json",
"build": "npm run build:tasks",
"build:clean": "npm run clean && npm run initdev && npm run build",
"build:tasks": "npm run compile:tasks",
"test": "npm run build && glob-exec --foreach \"tasks/**/tests/*.test.js\" -- \"mocha '{{file}}' --reporter mocha-junit-reporter --reporter-option mochaFile=./{{file.name}}.results.junit.xml\"",
"test:coverage:cmd-output": "npm run build && glob-exec --foreach \"tasks/**/tests/*.test.js\" -- \"nyc mocha '{{file}}'\"",
"test:coverage:cobertura": "npm run build && glob-exec --foreach \"tasks/**/tests/*.test.js\" -- \"nyc --reporter=cobertura --reporter=text mocha '{{file}}' --reporter mocha-junit-reporter --reporter-option mochaFile=./{{file.name}}.results.junit.xml\"",
"test:coverage:html": "npm run build && nyc --reporter=html --reporter=text mocha 'tasks/vsteam-azuredevops/V1/tests/suite01.test.js'",
"package": "npm run build:clean && npm run package:tasks",
"clean": "git clean -fdX"
},
"dependencies": {},
"devDependencies": {
"@types/expect": "^24.3.0",
"@types/mocha": "^8.0.0",
"@types/node": "^14.0.23",
"@types/q": "^1.5.4",
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/eslint-plugin-tslint": "^3.7.0",
"@typescript-eslint/parser": "^3.7.0",
"eslint": "^7.5.0",
"glob-exec": "^0.1.1",
"mocha": "^7.2.0",
"mocha-junit-reporter": "^2.0.0",
"nyc": "^15.1.0",
"source-map-support": "^0.5.19",
"sync-request": "^6.1.0",
"tfx-cli": "^0.12.0",
"tslint": "^6.1.2",
"typescript": "^3.9.7"
}
}