-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
39 lines (39 loc) · 1.11 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
{
"name": "typescript-error-deltas",
"version": "0.3.0",
"private": true,
"description": "Script for comparing the errors from two builds of the TypeScript compiler",
"main": "dist/main.js",
"typings": "dist/main.d.ts",
"scripts": {
"build": "tsc -b .",
"test": "npm run build && jest"
},
"author": "Microsoft",
"license": "MIT",
"engines": {
"node": ">=18"
},
"dependencies": {
"@octokit/rest": "^20.0.2",
"@typescript/github-link": "^0.2.2",
"@typescript/server-harness": "^0.3.5",
"@typescript/server-replay": "^0.2.13",
"glob": "^10.3.10",
"js-yaml": "^4.1.0",
"json5": "^2.2.3",
"markdown-escape": "^2.0.0",
"random-seed": "^0.3.0",
"simple-git": "^3.22.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/js-yaml": "^4.0.9",
"@types/markdown-escape": "^1.1.3",
"@types/node": "^18.19.23",
"@types/random-seed": "^0.3.5",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.2"
}
}