-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.64 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.64 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "kiota-typescript",
"private": true,
"overrides": {
"string_decoder": "^1.3.0",
"tar": "^7.5.20",
"brace-expansion": "5.0.7",
"lodash": "^4.18.1",
"basic-ftp": "^5.2.2",
"axios": "^1.16.0",
"vite": "^7.3.5",
"@azure/msal-node": "^5.1.5",
"keyv": "^5.5.3",
"fast-uri": "^3.1.2",
"fast-xml-builder": "^1.1.7",
"form-data": "^4.0.6",
"sigstore": "^4.1.1",
"tmp": "^0.2.6",
"ws": "^8.21.0"
},
"devDependencies": {
"@microsoft/eslint-config-msgraph": "^5.0.0",
"@tony.ganchev/eslint-plugin-header": "^3.1.2",
"@types/node": "^26.0.0",
"@types/sinon": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"@vitest/browser": "^4.1.8",
"@vitest/coverage-istanbul": "^4.0.1",
"@vitest/coverage-v8": "^4.0.1",
"@vitest/ui": "^4.0.1",
"eslint": "^9.7.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsdoc": "^56.1.2",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^12.0.0",
"husky": "^9.0.11",
"lerna": "^10.0.0",
"prettier": "^3.2.4",
"rimraf": "^6.0.0",
"sinon": "^22.0.0",
"tsc-alias": "^1.8.10",
"typescript": "^5.3.3",
"vitest": "^4.0.1",
"webdriverio": "^9.0.1"
},
"workspaces": [
"packages/test/",
"packages/abstractions",
"packages/bundle",
"packages/http/*",
"packages/serialization/*",
"packages/authentication/*"
],
"scripts": {
"build": "npm run prettier:check && npm run clean && npm run build:@microsoft/*",
"build:@microsoft/*": "lerna run build --scope \"@microsoft/*\"",
"clean": "lerna run --parallel --stream --scope \"@microsoft/*\" clean",
"test:browser": "lerna run --scope \"@microsoft/*\" test:browser",
"test:node": "lerna run --scope \"@microsoft/*\" test:node",
"test": "npm run test:node && npm run test:browser",
"test:coverage": "lerna run test:coverage",
"test:integrated": "lerna run test:integrated",
"build:integrated": "lerna run build --scope test-kiota-typescript-libraries",
"tsc:version": "tsc --version",
"prettier:base": "prettier --parser typescript",
"prettier:check": "npm run prettier:base -- --check \"packages/**/*.{ts,tsx}\"",
"prettier:write": "npm run prettier:base -- --write \"packages/**/*.{ts,tsx}\"",
"lint": "npm run lint:eslint",
"lint:eslint": "eslint --quiet \"packages/*/src/**/*.ts\"",
"lint:eslint:fix": "npm run lint:eslint -- --fix",
"lint:eslint:loud": "eslint \"packages/*/src/**/*.ts\" \"packages/*/*/src/**/*.ts\"",
"prepare": "husky"
}
}