forked from jasonjoh/node-outlook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 890 Bytes
/
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
{
"name": "node-outlook",
"version": "1.1.6",
"description": "A package for calling the Outlook APIs from Node.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"builddocs": "jsdoc2md version-2.js mail-api.js calendar-api.js contacts-api.js > ./reference/node-outlook.md"
},
"keywords": [
"office365",
"outlook",
"mail",
"calendar",
"contacts"
],
"author": "Jason Johnston",
"license": "MIT",
"dependencies": {
"node-uuid": "^1.4.3",
"request": "^2.58.0",
"xmlhttprequest": "^1.7.0"
},
"repository": {
"type": "git",
"url": "https://github.com/jasonjoh/node-outlook.git"
},
"bugs": {
"url": "https://github.com/jasonjoh/node-outlook/issues"
},
"homepage": "https://github.com/jasonjoh/node-outlook",
"devDependencies": {
"jsdoc-to-markdown": "^1.3.3"
}
}