-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.38 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.38 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
41
42
{
"name": "@microsoft/msgraph-beta-sdk-tests",
"version": "1.0.0-preview.72",
"description": "integration test project for all the packages",
"author": "Microsoft <graphsdkpub+javascript@microsoft.com>",
"homepage": "https://github.com/microsoftgraph/msgraph-beta-sdk-typescript#readme",
"license": "MIT",
"main": "index.js",
"private": true,
"publishConfig": {
"access": "restricted"
},
"repository": {
"type": "git",
"url": "git+https://github.com/microsoftgraph/msgraph-beta-sdk-typescript.git"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"clean": "rimraf -g **/*.d.ts && rimraf -g **/*.d.ts.map && rimraf -g **/*.js.map && rimraf -g **/*.js && rimraf tsconfig.tsbuildinfo",
"test": "mocha *.js"
},
"bugs": {
"url": "https://github.com/microsoftgraph/msgraph-beta-sdk-typescript/issues"
},
"dependencies": {
"@azure/identity": "^4.0.1",
"@microsoft/kiota-bundle": "^1.0.0-preview.92",
"@microsoft/kiota-authentication-azure": "^1.0.0-preview.92",
"@microsoft/msgraph-beta-sdk": "^1.0.0-preview.45",
"@microsoft/msgraph-beta-sdk-users": "^1.0.0-preview.45",
"@microsoft/msgraph-sdk-core": "^1.0.0-preview.17",
"tslib": "^2.6.2"
},
"devDependencies": {
"@types/chai": "^5.0.0",
"@types/mocha": "^10.0.6",
"@types/node": "^25.0.6",
"chai": "^6.0.1",
"mocha": "^11.0.1"
},
"type": "module"
}