forked from pnp/cli-microsoft365
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.42 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
{
"name": "@pnp/office365-cli",
"version": "1.2.0",
"description": "Manage Microsoft Office 365 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/SharePoint/office365-cli.git"
},
"homepage": "https://sharepoint.github.io/office365-cli/",
"bugs": {
"url": "https://github.com/SharePoint/office365-cli/issues"
},
"scripts": {
"build": "tsc -p .",
"watch": "tsc -w -p .",
"clean": "rimraf ./dist",
"test": "nyc -r=lcov -r=text mocha \"dist/**/*.spec.js\""
},
"keywords": [
"office 365",
"o365",
"sharepoint online",
"sharepoint"
],
"author": "https://github.com/SharePoint/office365-cli/graphs/contributors",
"maintainers": [
{
"name": "waldekm",
"email": "waldek@mastykarz.nl"
}
],
"contributors": [
"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>",
"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",
"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.1",
"easy-table": "^1.1.1",
"omelette": "^0.4.5",
"request-promise-native": "^1.0.5",
"vorpal": "github:pnp/vorpal"
},
"devDependencies": {
"@types/easy-table": "0.0.31",
"@types/mocha": "^2.2.48",
"@types/node": "^8.9.3",
"@types/request": "^2.47.0",
"@types/request-promise-native": "^1.0.13",
"@types/sinon": "^4.1.3",
"coveralls": "^3.0.0",
"mocha": "^4.1.0",
"nyc": "^11.4.1",
"rimraf": "^2.6.2",
"sinon": "^4.3.0",
"typescript": "^2.6.2"
},
"nyc": {
"exclude": [
"**/*.spec.js",
"**/clientsidepages.js"
]
}
}