-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
136 lines (136 loc) · 3.5 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "@pnp/action-cli-deploy",
"version": "5.0.1",
"description": "GitHub Action to deploy an app using CLI for Microsoft 365",
"license": "MIT",
"main": "lib/main.js",
"repository": {
"type": "git",
"url": "git+https://github.com/pnp/action-cli-deploy.git"
},
"homepage": "https://pnp.github.io/action-cli-deploy/",
"bugs": {
"url": "https://github.com/pnp/action-cli-deploy/issues"
},
"scripts": {
"build": "npm run clean && npm run tsc && ncc build -m --source-map",
"build:watch": "ncc build --watch -m --source-map",
"clean": "rimraf ./lib ./dist",
"lint": "eslint --ext .ts src",
"test": "npm run lint && npm run test:cov",
"test:test": "mocha",
"test:cov": "c8 npm run test:test",
"tsc": "tsc -p .",
"tsc:watch": "tsc -w -p .",
"watch": "npm run clean && npm run tsc && concurrently \"npm:tsc:watch\" \"npm:build:watch\""
},
"keywords": [
"adaptive card",
"ai builder",
"azure active directory",
"azure ad",
"azure",
"bookings",
"dataverse",
"entra id",
"graph",
"m365",
"microsoft 365",
"microsoft",
"o365",
"office 365",
"onedrive",
"onenote",
"outlook",
"planner",
"power apps",
"power automate",
"power platform",
"purview",
"search",
"sharepoint framework",
"sharepoint online",
"sharepoint",
"skype",
"spfx",
"teams",
"tenant",
"todo",
"viva connections",
"viva engage",
"viva",
"yammer"
],
"author": "https://github.com/pnp/action-cli-deploy/graphs/contributors",
"maintainers": [
{
"name": "Waldek Mastykarz",
"email": "waldek@mastykarz.nl",
"web": "https://blog.mastykarz.nl"
},
{
"name": "Garry Trinder",
"email": "garry.trinder@live.com",
"web": "https://garrytrinder.github.io/"
},
{
"name": "Albert-Jan Schot",
"email": "appie@digiwijs.nl",
"web": "https://www.cloudappie.nl/"
},
{
"name": "Arjun Menon",
"email": "arjun.umenon@gmail.com",
"web": "https://arjunumenon.com/"
},
{
"name": "Adam Wojcik",
"email": "adam.wojcik.it@gmail.com",
"web": "https://github.com/Adam-it/"
},
{
"name": "Martin Lingstuyl",
"email": "mlingstuyl@live.com",
"web": "https://www.blimped.nl/"
},
{
"name": "Jasey Waegebaert",
"email": "38426621+Jwaegebaert@users.noreply.github.com",
"web": "https://github.com/Jwaegebaert"
},
{
"name": "Milan Holemans",
"email": "11723921+milanholemans@users.noreply.github.com",
"web": "https://github.com/milanholemans"
}
],
"contributors": [
"Georgiev, Velin <velin.georgiev@gmail.com>",
"Holemans, Milan <11723921+milanholemans@users.noreply.github.com",
"Lingstuyl, Martin <mlingstuyl@live.com>",
"Mastykarz, Waldek <waldek@mastykarz.nl>",
"Tatti, Anoop <anoop@live.co.uk>",
"Trinder, Garry <garry.trinder@live.com>"
],
"dependencies": {
"@actions/core": "1.10.1",
"@actions/exec": "1.1.1",
"@actions/io": "1.1.3"
},
"devDependencies": {
"@types/mocha": "10.0.6",
"@types/node": "20.11.10",
"@types/sinon": "10.0.16",
"@typescript-eslint/eslint-plugin": "6.20.0",
"@typescript-eslint/parser": "6.20.0",
"@vercel/ncc": "0.36.1",
"c8": "9.1.0",
"concurrently": "8.2.2",
"eslint": "8.56.0",
"mocha": "10.2.0",
"rimraf": "5.0.5",
"sinon": "15.2.0",
"source-map-support": "0.5.21",
"typescript": "5.2.2"
}
}