forked from microsoftgraph/msgraph-sdk-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.51 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.51 KB
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
{
"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.3.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",
"uglify-js": "^3.4.5"
},
"scripts": {
"compile": "tsc",
"rollup-core": "node core-browserify.js > lib/graph-js-sdk-core.js && uglifyjs lib/graph-js-sdk-core.js --output lib/graph-js-sdk-core.js",
"rollup-with-vendor": "node node-browserify.js > lib/graph-js-sdk-web.js && uglifyjs ./lib/graph-js-sdk-web.js --output ./lib/graph-js-sdk-web.js",
"build-core": "npm run compile && npm run rollup-core",
"build-with-vendor": "npm run compile && npm run rollup-with-vendor",
"build": "npm run compile && npm run rollup-core && npm run rollup-with-vendor",
"test": "mocha lib/spec/core",
"test:types": "tsc -p spec && mocha spec/types",
"test:tasks": "tsc -p spec && mocha spec/tasks",
"test:content": "tsc -p spec && mocha spec/content"
},
"dependencies": {
"es6-promise": "^4.1.0",
"isomorphic-fetch": "^2.2.1"
},
"repository": {
"type": "git",
"url": "https://github.com/microsoftgraph/msgraph-sdk-javascript.git"
}
}