forked from pnp/cli-microsoft365
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
124 lines (124 loc) · 4.03 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
{
"name": "@pnp/office365-cli",
"version": "1.22.0",
"description": "Manage Microsoft Office 365 and SharePoint Framework projects on any platform",
"license": "MIT",
"main": "./dist/index.js",
"bin": {
"office365": "./dist/index.js",
"o365": "./dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pnp/office365-cli.git"
},
"homepage": "https://pnp.github.io/office365-cli/",
"bugs": {
"url": "https://github.com/pnp/office365-cli/issues"
},
"scripts": {
"build": "tsc -p . && node scripts/copy-files.js",
"watch": "tsc -w -p .",
"clean": "rimraf ./dist",
"test": "nyc -r=lcov -r=text mocha \"dist/**/*.spec.js\""
},
"keywords": [
"office 365",
"sharepoint framework",
"o365",
"spfx",
"sharepoint online",
"sharepoint",
"microsoft teams",
"microsoft graph",
"microsoft flow",
"azure active directory",
"azure ad",
"azure",
"microsoft"
],
"author": "https://github.com/pnp/office365-cli/graphs/contributors",
"maintainers": [
{
"name": "waldekm",
"email": "[email protected]"
}
],
"contributors": [
"Ågren, Simon <[email protected]>",
"Balasubramaniam, Jayakumar <[email protected]>",
"Bauer, Stefan <[email protected]>",
"Bernier, Hugo <[email protected]>",
"Biret, Vincent <[email protected]>",
"Biro, Peter <[email protected]>",
"Bloemsma, Arjen <[email protected]>",
"Brouwers, Stijn <[email protected]>",
"Calabro, David <[email protected]>",
"Connell, Andrew <[email protected]>",
"Deshpande, Vardhaman <[email protected]>",
"Georgiev, Velin <[email protected]>",
"Gölles, Thomas <[email protected]>",
"Hawrylak, Paweł <[email protected]>",
"Högberg, Joakim <[email protected]>",
"Hvam, Allan <[email protected]>",
"Jaakke, Robert <[email protected]>",
"Kailasam, Balamurugan <[email protected]>",
"Keijzers, Paul <[email protected]>",
"Kumar, Shantha <[email protected]>",
"Laskewitz, Daniel <[email protected]>",
"Mastykarz, Waldek <[email protected]>",
"Plenevaux, Yannick <[email protected]>",
"Powney, Mark <[email protected]>",
"Raju, Arnie <[email protected]>",
"Romano, Rodrigo <[email protected]>",
"Schot, Albert-Jan <[email protected]>",
"Schouten, Robert <[email protected]>",
"Schütze, Sebastian <[email protected]>",
"Siatka, Piotr <[email protected]>",
"Sitaraman, Rajesh <[email protected]>",
"Sittler, Laurent <[email protected]>",
"Skelly, Pete <[email protected]>",
"Struyf, Elio <[email protected]>",
"Svenson, Mikael <[email protected]>",
"Tatti, Anoop <[email protected]>",
"van Hunen, Erwin <[email protected]>",
"van Rousselt, Rick <[email protected]>",
"Velliah, Joseph <[email protected]>",
"Wilen, Wictor <[email protected]>",
"Williams, Rabia <[email protected]>"
],
"dependencies": {
"adal-node": "^0.1.28",
"applicationinsights": "^1.4.0",
"easy-table": "^1.1.1",
"omelette": "^0.4.12",
"request-promise-native": "^1.0.7",
"semver": "^6.1.1",
"strip-json-comments": "^3.0.1",
"typescript": "^3.5.1",
"update-notifier": "^3.0.0",
"uuid": "^3.3.2",
"vorpal": "https://github.com/pnp/vorpal/raw/master/vorpal-1.11.4.tgz"
},
"devDependencies": {
"@types/easy-table": "0.0.32",
"@types/mocha": "^5.2.7",
"@types/node": "^10.14.8",
"@types/request": "^2.48.1",
"@types/request-promise-native": "^1.0.16",
"@types/semver": "^6.0.0",
"@types/sinon": "^5.0.5",
"@types/update-notifier": "^2.5.0",
"coveralls": "^3.0.4",
"mocha": "^6.1.4",
"nyc": "^13.3.0",
"rimraf": "^2.6.3",
"sinon": "^7.3.2"
},
"nyc": {
"exclude": [
"**/*.spec.js",
"**/clientsidepages.js"
]
}
}