forked from microsoft/DefinitelyTyped-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.41 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
45
46
47
48
49
50
51
52
53
54
{
"name": "@definitelytyped/dts-critic",
"version": "0.0.199",
"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:*",
"command-exists": "^1.2.9",
"semver": "^7.5.4",
"tmp": "^0.2.1",
"typescript": "^5.3.3",
"yargs": "^17.7.2"
},
"peerDependencies": {
"typescript": "*"
},
"devDependencies": {
"@types/command-exists": "^1.2.3",
"@types/semver": "^7.5.6",
"@types/strip-json-comments": "^3.0.0",
"@types/tmp": "^0.2.6",
"strip-json-comments": "^3.1.1"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -b .",
"dt": "node dist/dt.js",
"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": ">=16.17.0"
}
}