-
Notifications
You must be signed in to change notification settings - Fork 211
/
package.json
44 lines (44 loc) · 1.13 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
{
"name": "@definitelytyped/dts-critic",
"version": "0.1.16",
"author": "Nathan Shively-Sanders",
"description": "Checks a new .d.ts against the Javascript source and tells you what problems it has",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@definitelytyped/header-parser": "workspace:*",
"typescript": "^5.6.3",
"yargs": "^17.7.2"
},
"peerDependencies": {
"typescript": "*"
},
"devDependencies": {},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -b .",
"test": "../../node_modules/.bin/jest --config ../../jest.config.js packages/dts-critic"
},
"repository": {
"type": "git",
"url": "https://github.com/microsoft/DefinitelyTyped-tools.git",
"directory": "packages/dts-critic"
},
"keywords": [
"definitely",
"typed",
"refresh",
"npm",
"tag"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/microsoft/DefinitelyTyped-tools/issues"
},
"homepage": "https://github.com/microsoft/DefinitelyTyped-tools/tree/main/packages/dts-critic#readme",
"engines": {
"node": ">=18.18.0"
}
}