-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.04 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.04 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
{
"name": "@microsoft/powerplatform-cli-wrapper",
"version": "0.0.1",
"engines": {
"node": ">=16.0.0"
},
"description": "JavaScript wrapper for Power Platform CLI (pac)",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "node node_modules/gulp/bin/gulp.js",
"test": "node node_modules/gulp/bin/gulp.js test",
"ci": "node node_modules/gulp/bin/gulp.js ci",
"dist": "node node_modules/gulp/bin/gulp.js dist",
"trigger-pkg-release": "node node_modules/release-it/bin/release-it --increment patch --ci -VV --config ./.releaseIt-createRC.yaml",
"set-version": "node node_modules/release-it/bin/release-it --increment patch --ci -VV"
},
"author": "PowerApps-ISV-Tools",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/powerplatform-cli-wrapper.git"
},
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/chai-as-promised": "^7.1.8",
"@types/fs-extra": "^11.0.4",
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.6",
"@types/node": "^22.15.29",
"@types/sinon": "^17.0.3",
"@types/sinon-chai": "^3.2.12",
"@types/sinonjs__fake-timers": "^8.1.5",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.62.0",
"chai": "^4.4.1",
"chai-as-promised": "^7.1.2",
"eslint": "^8.51.0",
"eslint-plugin-node": "^11.1.0",
"fancy-log": "^2.0.0",
"gulp": "^5.0.0",
"gulp-eslint-new": "^2.2.0",
"gulp-mocha": "^8.0.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-typescript": "^6.0.0-alpha.1",
"mocha": "^10.4.0",
"node-fetch": "^3.3.2",
"ps-list": "^8.1.1",
"release-it": "^17.3.0",
"rewiremock": "^3.14.6",
"sinon": "^17.0.1",
"sinon-chai": "^3.6.0",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.2",
"ts-sinon": "^2.0.1",
"typescript": "^5.5.3",
"unzip-stream": "^0.3.4"
},
"dependencies": {
"fs-extra": "^11.1.1",
"glob": "^11.0.2"
},
"overrides": {
"ts-sinon": {
"@types/node": "$@types/node"
}
}
}