forked from microsoft/DefinitelyTyped-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.67 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
{
"name": "@definitelytyped/dtslint",
"version": "0.1.5",
"description": "Runs tests on TypeScript definition files",
"main": "./dist/index.js",
"bin": "./dist/index.js",
"publishConfig": {
"access": "public"
},
"contributors": [
"Nathan Shively-Sanders <[email protected]> (https://github.com/sandersn)",
"Andy Hanson <[email protected]> (https://github.com/andy-ms)",
"Dan Vanderkam <[email protected]> (https://github.com/danvk)"
],
"repository": {
"type": "git",
"url": "https://github.com/microsoft/DefinitelyTyped-tools.git",
"directory": "packages/dtslint"
},
"scripts": {
"build": "tsc -b .",
"test": "../../node_modules/.bin/jest --config ../../jest.config.js packages/dtslint"
},
"dependencies": {
"@definitelytyped/header-parser": "workspace:*",
"@definitelytyped/typescript-versions": "workspace:*",
"@definitelytyped/utils": "workspace:*",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"@typescript-eslint/types": "^6.19.0",
"@typescript-eslint/typescript-estree": "^6.19.0",
"@typescript-eslint/utils": "^6.19.0",
"eslint": "^8.56.0",
"eslint-plugin-import": "^2.29.1",
"strip-json-comments": "^3.1.1"
},
"peerDependencies": {
"typescript": ">= 3.0.0-dev || >= 3.1.0-dev || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.7.0-dev || >= 3.8.0-dev || >= 3.9.0-dev || >= 4.0.0-dev || >=5.0.0-dev"
},
"devDependencies": {
"@types/eslint": "^8.56.2",
"@types/strip-json-comments": "^3.0.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=16.17.0"
},
"license": "MIT"
}