forked from pnp/cli-microsoft365
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 loc) · 3.25 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
{
"name": "@pnp/office365-cli",
"version": "1.13.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": "waldek@mastykarz.nl"
}
],
"contributors": [
"Ågren, Simon <simon.agren@sogeti.com>",
"Bauer, Stefan <stefan.bauer@n8d.at>",
"Biret, Vincent <baywet@users.noreply.github.com>",
"Bloemsma, Arjen <a.bloemsma@gmail.com>",
"Brouwers, Stijn <stijnbrouwers@gmail.com>",
"Connell, Andrew <me@andrewconnell.com>",
"Georgiev, Velin <velin.georgiev@gmail.com>",
"Hawrylak, Paweł <phawrylak@outlook.com>",
"Hvam, Allan <ahp@delegate.dk>",
"Jaakke, Robert <robert.jaakke@mavention.nl>",
"Kailasam, Balamurugan <kshsbala@engineer.com>",
"Keijzers, Paul <KbWorks@users.noreply.github.com>",
"Laskewitz, Daniel <daniel@laskewitz.nl>",
"Mastykarz, Waldek <waldek@mastykarz.nl>",
"Plenevaux, Yannick <yannick.plenevaux@gmail.com>",
"Powney, Mark <powney.mark@outlook.com>",
"Romano, Rodrigo <rodrigo@rodrigoromano.net>",
"Schot, Albert-Jan <appie@digiwijs.nl>",
"Schouten, Robert <robert.schouten@wortell.nl>",
"Sitaraman, Rajesh <rajesh.sitaraman@outlook.com>",
"Sittler, Laurent <laurent.sittler@lsonline.fr>",
"Skelly, Pete <peteskelly@gmail.com>",
"Svenson, Mikael <miksvenson@gmail.com>",
"Wilen, Wictor <wictor@wictorwilen.se>",
"van Hunen, Erwin <erwin.van.hunen@outlook.com>"
],
"dependencies": {
"adal-node": "^0.1.28",
"applicationinsights": "^1.0.6",
"easy-table": "^1.1.1",
"omelette": "^0.4.12",
"request-promise-native": "^1.0.5",
"semver": "^5.6.0",
"strip-json-comments": "^2.0.1",
"typescript": "^3.1.6",
"update-notifier": "^2.5.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.5",
"@types/node": "^8.10.38",
"@types/request": "^2.48.1",
"@types/request-promise-native": "^1.0.15",
"@types/semver": "^5.5.0",
"@types/sinon": "^5.0.5",
"@types/update-notifier": "^2.5.0",
"coveralls": "^3.0.2",
"mocha": "^5.2.0",
"nyc": "^12.0.2",
"rimraf": "^2.6.2",
"sinon": "^7.1.1"
},
"nyc": {
"exclude": [
"**/*.spec.js",
"**/clientsidepages.js"
]
}
}