forked from microsoft/DefinitelyTyped-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.25 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
{
"name": "@definitelytyped/definitions-parser",
"version": "0.0.202",
"description": "Reads the DefinitelyTyped repository and provides an API for querying its metadata",
"homepage": "https://github.com/microsoft/DefinitelyTyped-tools/tree/main/packages/definitions-parser#readme",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/DefinitelyTyped-tools.git",
"directory": "packages/definitions-parser"
},
"scripts": {
"build": "tsc -b",
"test": "../../node_modules/.bin/jest --config ../../jest.config.js packages/definitions-parser"
},
"bugs": {
"url": "https://github.com/microsoft/DefinitelyTyped-tools/issues"
},
"dependencies": {
"@definitelytyped/header-parser": "workspace:*",
"@definitelytyped/typescript-versions": "workspace:*",
"@definitelytyped/utils": "workspace:*",
"@types/node": "^16.18.71",
"@types/semver": "^7.5.6",
"pacote": "^17.0.5",
"semver": "^7.5.4"
},
"devDependencies": {
"@types/pacote": "^11.1.8",
"typescript": "^5.3.3"
},
"peerDependencies": {
"typescript": "*"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=16.17.0"
}
}