-
Notifications
You must be signed in to change notification settings - Fork 215
/
package.json
35 lines (35 loc) · 1.03 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
{
"name": "@definitelytyped/definitions-parser",
"version": "0.0.28",
"description": "Reads the DefinitelyTyped repository and provides an API for querying its metadata",
"homepage": "https://github.com/DefinitelyTyped/tools#readme",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/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/DefinitelyTyped/tools/issues"
},
"dependencies": {
"@definitelytyped/header-parser": "^0.0.28",
"@definitelytyped/typescript-versions": "^0.0.28",
"@definitelytyped/utils": "^0.0.28",
"@types/node": "^12.12.29",
"fs-extra": "^8.1.0",
"typescript": "^3.8.3"
},
"devDependencies": {
"@types/fs-extra": "^8.1.0"
},
"publishConfig": {
"access": "public"
}
}