This repository has been archived by the owner on Nov 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 86
/
package.json
59 lines (59 loc) · 1.78 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
55
56
57
58
59
{
"name": "dtslint",
"version": "4.2.1",
"description": "Runs tests on TypeScript definition files",
"files": [
"bin",
"dt.json",
"dtslint.json",
"dtslint-expect-only.json"
],
"main": "bin",
"bin": "./bin/index.js",
"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/dtslint.git"
},
"scripts": {
"watch": "tsc --watch",
"build": "tsc",
"lint": "eslint --ext ts src",
"test": "npm run build && node test/test.js",
"prepublishOnly": "npm run build && npm run test && npm run lint"
},
"dependencies": {
"@definitelytyped/header-parser": "latest",
"@definitelytyped/typescript-versions": "latest",
"@definitelytyped/utils": "latest",
"dts-critic": "latest",
"fs-extra": "^6.0.1",
"json-stable-stringify": "^1.0.1",
"strip-json-comments": "^2.0.1",
"tslint": "5.14.0",
"tsutils": "^2.29.0",
"yargs": "^15.1.0"
},
"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"
},
"devDependencies": {
"@types/fs-extra": "^5.0.2",
"@types/json-stable-stringify": "^1.0.32",
"@types/node": "14.0.x",
"@types/strip-json-comments": "^0.0.28",
"@types/yargs": "^15.0.3",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"eslint": "^7.16.0",
"typescript": "next"
},
"engines": {
"node": ">=10.0.0"
},
"license": "MIT"
}