-
Notifications
You must be signed in to change notification settings - Fork 211
/
package.json
38 lines (38 loc) · 1.09 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
{
"name": "@definitelytyped/dtslint-runner",
"version": "0.1.30",
"description": "Run dtslint on DefinitelyTyped packages",
"homepage": "https://github.com/microsoft/DefinitelyTyped-tools/tree/main/packages/dtslint-runner#readme",
"license": "MIT",
"main": "dist/index.js",
"bin": "dist/index.js",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/microsoft/DefinitelyTyped-tools.git",
"directory": "packages/dtslint-runner"
},
"scripts": {
"build": "tsc -b .",
"check-parse-results": "node --enable-source-maps dist/check-parse-results.js",
"test": "echo \"Error: run tests from root\" && exit 1"
},
"bugs": {
"url": "https://github.com/microsoft/DefinitelyTyped-tools/issues"
},
"dependencies": {
"@definitelytyped/definitions-parser": "workspace:*",
"@definitelytyped/dtslint": "workspace:*",
"@definitelytyped/utils": "workspace:*",
"@octokit/rest": "^20.1.1",
"yargs": "^17.7.2"
},
"devDependencies": {
"glob": "^10.4.5"
},
"engines": {
"node": ">=18.18.0"
}
}