-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
88 lines (88 loc) · 3.37 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
{
"name": "root",
"version": "1.0.0",
"author": "HomecareHomebase",
"license": "ISC",
"description": "A plugin to use the Bake IaC deployment system for Azure",
"repository": "https://github.com/HomecareHomebase/azure-bake-ado",
"scripts": {
"prod:init": "npm run prod:base:init && npm run prod:tasks:init",
"prod:base:init": "npm install --no-progress --no-update-notifier",
"prod:tasks:init": "npx glob-exec --parallel --foreach \"tasks/**/tsconfig.json\" -- \"cd {{file.dir}} && npm install --only=prod --no-update-notifier --no-progress\"",
"dev:init": "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": "npx glob-exec --parallel --foreach \"tasks/**/tsconfig.json\" -- \"cd {{file.dir}} && npm install --no-update-notifier --no-progress\"",
"compile:tasks": "npx glob-exec \"tasks/**/tsconfig.json\" -- \"tsc -b {{files.join(' ')}}\"",
"lint:tasks": "npx glob-exec --parallel --foreach \"tasks/**/tsconfig.json\" -- \"tslint -p {{file}} -c tslint.json\"",
"clean": "git clean -fdX",
"build:tasks": "npm run compile:tasks",
"build": "npm run build:tasks",
"build:lint": "npm run build && npm run lint:tasks",
"sonarqube": "npx gulp coveragesonarqube",
"package": "npx gulp package",
"clean:build": "npm run clean && npm run dev:init && npm run build:lint",
"clean:build:test": "npm run clean:build && npm run test",
"prod:clean:build": "npm run clean && npm run prod:init && npm run build",
"prod:build:package": "npm run prod:clean:build && npm run package",
"publish": "npx gulp upload",
"prod:full": "npm run prod:clean:build && sudo npm install --global tfx-cli && npm run publish"
},
"dependencies": {
"@types/node": "^11.13.1",
"@types/q": "^1.5.2",
"assert": "^1.5.0",
"azure-pipelines-task-lib": "^2.8.0",
"chai": "^4.2.0",
"coveralls": "^3.0.3",
"del": "^4.1.1",
"event-stream": "^4.0.1",
"file-system": "^2.2.2",
"glob-exec": "^0.1.1",
"gulp": "^4.0.2",
"gulp-bump": "^3.1.3",
"gulp-debug": "^4.0.0",
"gulp-filter": "^6.0.0",
"gulp-git": "^2.9.0",
"gulp-git-release": "^1.0.14",
"gulp-inline-source": "^4.0.0",
"gulp-shell": "^0.7.0",
"gulp-tag-version": "^1.3.1",
"gulp-vsts-bump": "^1.1.8",
"mocha": "^6.1.3",
"moment": "^2.24.0",
"nyc": "^14.0.0",
"sonarqube-scanner": "^2.4.0",
"ts-node": "^8.1.0",
"tslint": "^5.13.1",
"typescript": "^3.4.4",
"typestrict": "^1.0.2"
},
"nyc": {
"all": false,
"check-coverage": true,
"cache": true,
"recursive": true,
"include": [
"tasks/**/*.ts"
],
"exclude": [
"coverage/",
"node_modules/"
],
"extensions": [
".ts",
".tsx"
],
"report-dir": "./coverage",
"reporter": [
"clover",
"lcov",
"cobertura",
"html",
"text",
"text-summary"
],
"temp-directory": "./coverage/.nyc_output"
}
}