forked from microsoftgraph/msgraph-sdk-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 952 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
{
"name": "@microsoft/microsoft-graph-client",
"//": "NOTE: The version here should match exactly the exported const PACKAGE_VERSION in common.ts. If you change it here, also change it there.",
"version": "1.0.0",
"description": "Microsoft Graph Client Library",
"main": "lib/src/index.js",
"typings": "lib/src/index",
"files": [
"lib/"
],
"types": "./lib/src/index.d.ts",
"devDependencies": {
"@types/mocha": "^5.2.4",
"@types/node": "^9.4.0",
"browserify": "^13.1.0",
"mocha": "^5.2.0",
"typescript": "^2.2.1"
},
"scripts": {
"build": "tsc && node node-browserify.js > lib/graph-js-sdk-web.js",
"test": "mocha lib/spec/core",
"test:types": "tsc --p spec/types && mocha spec/types"
},
"dependencies": {
"es6-promise": "^4.1.0",
"isomorphic-fetch": "^2.2.1"
},
"repository": {
"type": "git",
"url": "https://github.com/microsoftgraph/msgraph-sdk-javascript.git"
}
}