-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 971 Bytes
/
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
{
"name": "msgraph-docs-validation",
"version": "1.0.0",
"description": "",
"main": "./out/index.js",
"types": "./out/index.d.ts",
"files": [
"./out"
],
"scripts": {
"compile": "tsc",
"watch": "tsc -watch",
"pretest": "npm run compile && npm run lint",
"lint": "eslint . --ext ts",
"test": "jest"
},
"author": "Microsoft Corporation",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.14.11",
"@types/pluralize": "^0.0.33",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"node-ts": "^6.1.2",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3"
},
"dependencies": {
"glob": "^10.4.3",
"pluralize": "^8.0.0",
"vscode-languageserver-textdocument": "^1.0.11",
"yaml": "^2.5.1"
}
}