forked from microsoft/azure-devops-engineering-extensions
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.27 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.27 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
63
{
"name": "calrom-azure-devops-engineering-tasks",
"version": "1.0.8",
"description": "Calrom fork of Microsoft engineering tasks",
"scripts": {
"test": "jest",
"prebuild": "npm install --no-optional",
"build": "npm run prebuild && npm run build:emailreport && npm run build:prinsights",
"build:t1": "npm run prebuild && npm run build:emailreport",
"build:t2": "npm run prebuild && npm run build:prinsights",
"pack:t1": "npm run clean && npm run build:t1 && npm run pack:emailreport",
"pack:t2": "npm run clean && npm run build:t2 && npm run pack:prinsights",
"e2e:t1": "npm run e2e:emailreport",
"e2e:t2": "npm run e2e:prinsights",
"build:prinsights": "tsc -p Tasks/pullRequestInsightsTask/tsconfig.json",
"build:emailreport": "tsc -p Tasks/emailReportTask/tsconfig.json && node ./commands/postbuild.js emailReport prod",
"pack:emailreport": "node ./commands/package.js emailreport",
"pack:prinsights": "node ./commands/package.js pullRequestInsights",
"e2e:emailreport": "node js/emailReportExtension/emailReportTask/tests/__e_to_e_tests__/InvokeTest.js",
"e2e:prinsights": "node js/pullRequestInsightsExtension/pullRequestInsightsTask/tests/__e_to_e_tests__/InvokeTest.js",
"clean": "rimraf dist"
},
"jest": {
"preset": "ts-jest"
},
"repository": {
"type": "git",
"url": "https://github.com/calrom-jtejero/azure-devops-engineering-extensions"
},
"author": "Calrom Ltd.",
"license": "ISC",
"dependencies": {
"azure-devops-node-api": "^10.0.0",
"azure-pipelines-task-lib": "^2.8.0",
"nodemailer": "^6.6.2",
"object-to-xml": "^2.0.0",
"performance-now": "^2.1.0",
"reflect-metadata": "^0.1.13",
"stats-lite": "^2.0.0",
"xslt-processor": "^0.11.5"
},
"devDependencies": {
"@types/sinon": "^7.0.12",
"@types/stats-lite": "^2.2.0",
"@types/string-template": "^1.0.2",
"@types/jest": "^24.0.15",
"@types/node": "^12.0.4",
"@types/q": "^1.5.2",
"jest": "^27.0.4",
"rimraf": "^2.6.3",
"sinon": "^7.3.2",
"source-map-loader": "^0.2.3",
"tfx-cli": "^0.7.8",
"ts-jest": "^27.0.3",
"ts-loader": "^6.0.4",
"ts-mockito": "^2.3.1",
"tslint": "^6.1.3",
"typescript": "^3.9.7"
},
"optionalDependencies": {
"fsevents": "*"
}
}