-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
49 lines (49 loc) · 1.34 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "@microsoft/kiota-abstractions",
"version": "1.0.0-preview.82",
"description": "Core abstractions for kiota generated libraries in TypeScript and JavaScript",
"main": "dist/es/src/index.js",
"module": "dist/es/src/index.js",
"types": "dist/es/src/index.d.ts",
"type": "module",
"scripts": {
"build": "npm run build:esm",
"build:esm": "tsc && tsc-alias",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"clean": "rimraf ./dist",
"test:browser": "vitest run --browser.name=chrome --browser.headless --browser.provider=webdriverio",
"test:node": "vitest --run",
"test:coverage": "vitest run --coverage.enabled --coverage.provider=istanbul",
"test": "npm run test:node && npm run test:browser"
},
"repository": "git://github.com/microsoft/kiota-typescript.git",
"keywords": [
"kiota",
"openAPI",
"Microsoft",
"Graph"
],
"author": "Microsoft",
"license": "MIT",
"bugs": {
"url": "https://github.com/microsoft/kiota-typescript/issues"
},
"homepage": "https://github.com/microsoft/kiota#readme",
"dependencies": {
"@opentelemetry/api": "^1.7.0",
"@std-uritemplate/std-uritemplate": "^2.0.0",
"tinyduration": "^3.3.0",
"tslib": "^2.6.2"
},
"publishConfig": {
"access": "public"
},
"browserslist": [
"defaults"
],
"devDependencies": {
"@types/uuid": "^10.0.0",
"uuid": "^11.0.5"
}
}