-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
58 lines (58 loc) · 2.15 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
50
51
52
53
54
55
56
57
58
{
"name": "kiota-typescript",
"private": true,
"devDependencies": {
"@microsoft/eslint-config-msgraph": "^4.1.1",
"@tony.ganchev/eslint-plugin-header": "^3.1.2",
"@types/node": "^22.0.0",
"@types/sinon": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"@vitest/browser": "^2.0.1",
"@vitest/coverage-v8": "^2.0.1",
"@vitest/coverage-istanbul": "^2.1.4",
"@vitest/ui": "^2.0.1",
"eslint": "^9.7.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsdoc": "^50.1.0",
"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": "^8.0.2",
"prettier": "^3.2.4",
"rimraf": "^6.0.0",
"sinon": "^19.0.2",
"tsc-alias": "^1.8.10",
"typescript": "^5.3.3",
"vitest": "^2.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",
"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"
}
}