This repository has been archived by the owner on Feb 18, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
65 lines (65 loc) · 1.93 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
60
61
62
63
64
65
{
"name": "dts-critic",
"version": "3.3.11",
"author": "Nathan Shively-Sanders",
"description": "Checks a new .d.ts against the Javascript source and tells you what problems it has",
"dependencies": {
"@definitelytyped/header-parser": "latest",
"command-exists": "^1.2.8",
"rimraf": "^3.0.2",
"semver": "^6.2.0",
"tmp": "^0.2.1",
"yargs": "^15.3.1"
},
"peerDependencies": {
"typescript": "*"
},
"devDependencies": {
"@types/command-exists": "^1.2.0",
"@types/jest": "^24.0.0",
"@types/node": "~10.17.0",
"@types/rimraf": "^3.0.0",
"@types/semver": "^6.0.1",
"@types/strip-json-comments": "0.0.30",
"@types/tmp": "^0.2.0",
"@types/yargs": "^12.0.8",
"@typescript-eslint/eslint-plugin": "^2.3.2",
"@typescript-eslint/experimental-utils": "^2.3.2",
"@typescript-eslint/parser": "^2.3.2",
"eslint": "^6.5.1",
"eslint-formatter-autolinkable-stylish": "^1.0.3",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsdoc": "^15.9.9",
"eslint-plugin-no-null": "^1.0.2",
"jest": "^24.7.1",
"strip-json-comments": "^2.0.1",
"typescript": "*"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "npm run build && jest",
"build": "tsc",
"dt": "node dist/dt.js",
"prepublishOnly": "npm run build && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sandersn/dts-critic.git"
},
"keywords": [
"definitely",
"typed",
"refresh",
"npm",
"tag"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/sandersn/dts-critic/issues"
},
"homepage": "https://github.com/sandersn/dts-critic#readme",
"engines": {
"node": ">=10.17.0"
}
}