-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
55 lines (55 loc) · 1.85 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
{
"name": "kiota-typescript",
"private": true,
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@types/chai": "^4.3.11",
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.15",
"@types/node-fetch": "^2.6.11",
"@types/sinon": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"chai": "4.3.10",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^12.0.0",
"karma": "^6.4.2",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.2.0",
"karma-firefox-launcher": "^2.1.2",
"karma-mocha": "^2.0.1",
"karma-typescript": "^5.5.4",
"lerna": "^8.0.2",
"mocha": "^10.2.0",
"prettier": "^3.2.4",
"rollup": "2.79.1",
"rollup-plugin-terser": "^7.0.2",
"sinon": "^17.0.1",
"typescript": "^5.3.3"
},
"workspaces": [
"packages/test/",
"packages/abstractions",
"packages/http/*",
"packages/serialization/*",
"packages/authentication/*"
],
"scripts": {
"build": "npm run build:cjs && npm run build:esm",
"build:watch": "npm run build:watch:cjs & npm run build:watch:es",
"build:cjs": "tsc -b packages/test/tsconfig.cjs.json",
"build:watch:cjs": "tsc -b packages/test/tsconfig.cjs.json -w",
"build:esm": "tsc -b packages/test/tsconfig.es.json",
"build:sdk": "npm run build:sdk:es && npm run build:sdk:cjs",
"build:sdk:es": "tsc -b packages/test/tsconfig.sdk.es.json",
"build:sdk:cjs": "tsc -b packages/test/tsconfig.sdk.cjs.json",
"build:watch:es": "tsc -b packages/test/tsconfig.es.json -w",
"test": "lerna run test --parallel",
"tsc:version": "tsc --version",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix"
}
}