forked from pnp/cli-microsoft365
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.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
{
"name": "@pnp/office365-cli",
"version": "0.1.0",
"description": "CLI for managing Office 365 configuration",
"license": "MIT",
"main": "./dist/index.js",
"bin": {
"office365": "./dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SharePoint/office365-cli.git"
},
"bugs": {
"url": "https://github.com/SharePoint/office365-cli/issues"
},
"scripts": {
"build": "tsc -p .",
"watch": "tsc -w -p .",
"clean": "rm -rf 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": "[email protected]"
}
],
"contributors": [
"Connell, Andrew <[email protected]>",
"Mastykarz, Waldek <[email protected]>"
],
"dependencies": {
"applicationinsights": "^1.0.0",
"request": "^2.83.0",
"request-promise-native": "^1.0.5",
"vorpal": "^1.12.0"
},
"devDependencies": {
"@types/chalk": "^0.4.31",
"@types/mocha": "^2.2.43",
"@types/node": "^8.0.33",
"@types/request": "^2.0.4",
"@types/request-promise-native": "^1.0.9",
"@types/sinon": "^2.3.6",
"coveralls": "^3.0.0",
"mocha": "^4.0.1",
"nyc": "^11.2.1",
"sinon": "^4.0.1",
"typescript": "^2.6.1"
}
}