forked from microsoft/typescript-error-deltas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 970 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
{
"name": "@typescript/new-errors",
"version": "0.2.0",
"description": "Script for comparing the errors from two builds of the TypeScript compiler",
"main": "index.js",
"bin": {
"ts-new-errors": "./bin/ts-new-errors"
},
"scripts": {
"build": "tsc",
"test": "npm run build && jest",
"run": "sudo umount /mnt/ts_downloads; sudo rm -r /mnt/ts_downloads; npm run build && node ./userErrors.js false https://github.com/microsoft/typescript main sandersn 44585 990374547"
},
"author": "Microsoft",
"license": "MIT",
"dependencies": {
"@octokit/rest": "^16.43.2",
"glob": "^7.1.7",
"json5": "^2.2.0",
"simple-git": "^2.39.0"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/jest": "^27.0.3",
"@types/node": "^14.14.27",
"jest": "^27.4.4",
"ts-jest": "^27.1.1",
"typescript": "^4.6.0-dev.20211213"
}
}