-
Notifications
You must be signed in to change notification settings - Fork 68
/
package.json
103 lines (103 loc) · 3.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "colinsalmcorner-buildtasks",
"version": "0.1.1",
"description": "Custom build tasks for TFS or VSO",
"scripts": {
"install-libs": "glob-exec --foreach \"Tasks/!(DacPacReport)*/package.json\" -- \"cd {{file.dir}} && yarn install\"",
"install-dacpac-libs": "echo 'REQUIRES NODE <= 8.x' && cd Tasks/DacPacReport && yarn install",
"upgrade-libs": "glob-exec --foreach \"Tasks/!(DacPacReport)*/package.json\" -- \"cd {{file.dir}} && yarn upgrade --latest\"",
"build": "tsc",
"build-prod": "yarn install-libs && tsc",
"junittest": "NODE_ENV=test NODE_NO_WARNINGS=1 nyc mocha",
"test": "yarn build && cross-env NODE_ENV=test NODE_NO_WARNINGS=1 mocha --no-opts test/_testsuite.ts --require ts-node/register --bail --reporter spec",
"debugtest": "yarn build && cross-env NODE_ENV=debugtest NODE_NO_WARNINGS=1 mocha --no-opts test/_testsuite.ts --require ts-node/register --bail",
"cover": "yarn build && cross-env yarn junittest",
"install-vswhere": "curl https://github.com/Microsoft/vswhere/releases/download/1.0.62/vswhere.exe -Lo Tasks/DacPacReport/vswhere.exe",
"prepextension": "yarn install-vswhere && yarn install-libs && yarn cover"
},
"repository": {
"type": "git",
"url": "https://github.com/colindembovsky/cols-agent-tasks"
},
"keywords": [
"build",
"tasks",
"tokens",
"replace",
"dacpac",
"traffic"
],
"author": "Colin Dembovsky (ColinsALMCorner.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/colindembovsky/cols-agent-tasks/issues"
},
"homepage": "https://github.com/colindembovsky/cols-agent-tasks",
"devDependencies": {
"@types/gulp-mocha": "^0.0.33",
"@types/mocha": "^9.0.0",
"@types/mockery": "^1.4.30",
"@types/node": "^16.11.10",
"@types/q": "^1.5.5",
"@types/shelljs": "^0.8.9",
"assert": "^2.0.0",
"cross-env": "^7.0.3",
"glob-exec": "^0.1.1",
"minimatch": "^3.0.4",
"mocha": "^9.1.3",
"mocha-junit-reporter": "^2.0.2",
"mockery": "^2.1.0",
"nyc": "^15.1.0",
"path": "^0.12.7",
"shelljs": "^0.8.4",
"source-map-support": "^0.5.21",
"sync-request": "^6.1.0",
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
},
"main": "index.js",
"dependencies": {
"azure-devops-node-api": "^13.0.0",
"azure-pipelines-task-lib": "^4.11.0",
"process": "^0.11.10",
"q": "^1.5.1"
},
"mocha": {
"bail": true,
"full-trace": true,
"package": "./package.json",
"reporter": "mocha-junit-reporter",
"reporter-options": "mochaFile=./test-results.xml",
"timeout": "45000",
"require": [
"ts-node/register",
"source-map-support/register"
]
},
"nyc": {
"include": [
"Tasks/**/*.{js,ts}",
"test/**/*.{js,ts}"
],
"exclude": [
"**/fileencoding.{js,ts}",
"test/**/*.{js,ts}"
],
"extension": [
".ts"
],
"reporter": [
"text",
"cobertura",
"html"
],
"require": [
"ts-node/register"
],
"all": true,
"sourceMap": true,
"instrument": true,
"cache": false,
"exclude-after-remap": false
}
}