-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.11 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.11 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
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
104
105
{
"name": "@microsoft/powerplatform-build-tools",
"version": "2.0.0",
"engines": {
"node": ">=20.0.0"
},
"description": "Azure DevOps tasks for Power Platform",
"main": "index.js",
"files": [
"dist"
],
"scripts": {
"clean": "node node_modules/gulp/bin/gulp.js clean",
"build": "node node_modules/gulp/bin/gulp.js compile --max-old-space-size=8192",
"test": "node node_modules/gulp/bin/gulp.js test",
"ci": "node node_modules/gulp/bin/gulp.js ci --max-old-space-size=8192",
"prepare-pack": "node node_modules/gulp/bin/gulp.js --max-old-space-size=8192 preparePack",
"pack": "node node_modules/gulp/bin/gulp.js pack",
"tfx": "node node_modules/tfx-cli/_build/tfx-cli.js",
"set-git-authn": "node ./setGitAuthN.js",
"set-version": "node node_modules/release-it/bin/release-it --increment patch --ci -VV",
"pub": "node node_modules/gulp/bin/gulp.js publish"
},
"author": "PowerApps-ISV-Tools",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/powerplatform-build-tools"
},
"devDependencies": {
"@types/chai": "^4.3.11",
"@types/debug": "^4.1.12",
"@types/fs-extra": "^11.0.4",
"@types/mocha": "^10.0.6",
"@types/q": "^1.5.8",
"@types/semver": "^7.5.8",
"@types/sinon": "^10.0.16",
"@types/sinon-chai": "^3.2.12",
"@types/sinonjs__fake-timers": "^8.1.5",
"@types/unzip-stream": "^0.3.4",
"@types/webpack": "^5.28.5",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"chai": "^4.5.0",
"dotenv": "^16.4.5",
"eslint": "^8.50.0",
"eslint-plugin-node": "^11.1.0",
"fancy-log": "^2.0.0",
"find": "^0.3.0",
"glob": "^10.4.1",
"gulp": "^5.0.0",
"gulp-eslint-new": "^2.6.1",
"gulp-mocha": "^10.0.1",
"gulp-sourcemaps": "^3.0.0",
"gulp-typescript": "^6.0.0-alpha.1",
"merge-stream": "^2.0.0",
"mocha": "^10.4.0",
"node-fetch": "^3.3.2",
"path-parse": "^1.0.7",
"ps-list": "^8.1.1",
"release-it": "^19.2.4",
"rewiremock": "^3.14.5",
"sinon": "^16.1.0",
"sinon-chai": "^3.6.0",
"sync-request": "^6.1.0",
"tar": "^7.5.11",
"tfx-cli": "^0.23.1",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"ts-sinon": "^2.0.2",
"typescript": "^5.4.5",
"webpack": "^5.105.4",
"webpack-cli": "^5.1.4",
"webpack-node-externals": "^3.0.0",
"yargs": "^17.7.2"
},
"overrides": {
"@types/node": "~24.3.0",
"nanoid": "3.3.11",
"electron-to-chromium": "1.5.250",
"basic-ftp": "^5.2.0",
"serialize-javascript": "^7.0.3",
"postcss": "^8.4.31",
"qs": "^6.14.2",
"diff": "^5.2.0",
"ajv": "^6.12.6",
"underscore": "^1.13.8",
"bn.js": "^5.2.3"
},
"dependencies": {
"@microsoft/powerplatform-cli-wrapper": "^0.1.135",
"azure-pipelines-task-lib": "^5.2.8",
"brace-expansion": "^2.0.2",
"debug": "^4.3.5",
"fs-extra": "^11.3.4",
"semver": "^7.7.4",
"unzip-stream": "^0.3.4"
},
"bundleDependencies": [
"@microsoft/powerplatform-cli-wrapper",
"azure-pipelines-task-lib",
"fs-extra",
"semver"
]
}