{ "name": "@microsoft/microsoft-graph-client", "version": "2.2.0-Preview.1", "description": "Microsoft Graph Client Library", "license": "MIT", "main": "lib/src/index.js", "module": "lib/es/index.js", "typings": "lib/src/index", "files": [ "lib/", "src/" ], "types": "./lib/src/index.d.ts", "dependencies": { "@babel/runtime": "^7.4.4", "tslib": "^1.14.1" }, "devDependencies": { "@babel/core": "^7.4.4", "@babel/plugin-transform-runtime": "^7.4.4", "@babel/preset-env": "^7.4.4", "@types/mocha": "^5.2.6", "@types/node": "^12.0.10", "chai": "^4.2.0", "gulp": "^4.0.2", "husky": "^2.2.0", "isomorphic-fetch": "^2.2.1", "lint-staged": "^8.1.5", "mocha": "^6.1.4", "msal": "^1.0.0", "prettier": "^1.17.0", "rollup": "^1.10.1", "rollup-plugin-babel": "^4.3.2", "rollup-plugin-commonjs": "^10.0.1", "rollup-plugin-node-resolve": "^5.2.0", "rollup-plugin-terser": "^5.0.0", "tslint": "^5.16.0", "tslint-config-prettier": "^1.18.0", "typescript": "^4.1.3", "uglify-es": "^3.3.9" }, "scripts": { "setVersion": "gulp setVersion", "build:es": "tsc --p tsconfig-es.json", "build:cjs": "tsc --p tsconfig-cjs.json", "pre-build": "npm run setVersion", "build": "npm run pre-build && npm run build:cjs && npm run build:es && rollup -c", "test": "npm run build:cjs && mocha lib/spec/content && mocha lib/spec/core && mocha lib/spec/middleware && mocha lib/spec/tasks", "test:content": "tsc --p spec/tsconfig.json && mocha spec/content", "test:core": "tsc --p spec/tsconfig.json && mocha spec/core", "test:middleware": "tsc --p spec/tsconfig.json && mocha spec/middleware", "test:tasks": "tsc --p spec/tsconfig.json && mocha spec/tasks", "test:development": "tsc --p spec/tsconfig.json && mocha spec/development/workload", "test:workload": "tsc --p spec/tsconfig.json && mocha spec/development/workload", "lint": "tslint --project ./tsconfig-cjs.json -c tslint.json", "format:css": "prettier --write \"**/*.css\"", "format:html": "prettier --write \"**/*.html\"", "format:js": "prettier --write \"**/*.js\"", "format:json": "prettier --write \"**/*.json\"", "format:md": "prettier --write \"**/*.md\"", "format:rc": "prettier --write --parser json \"**/.*rc\"", "format:ts": "prettier --write \"**/*.ts\"", "format": "npm run format:css && npm run format:html && npm run format:js && npm run format:json && npm run format:md && npm run format:rc && npm run format:ts", "prepack": "npm install && npm run build && npm run test" }, "repository": { "type": "git", "url": "https://github.com/microsoftgraph/msgraph-sdk-javascript.git" } }