-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
59 lines (59 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "@commander-js/extra-typings",
"version": "12.0.1",
"description": "Infer strong typings for commander options and action handlers",
"main": "index.js",
"scripts": {
"test": "tsd && jest",
"prepublishOnly": "npm run --silent test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/commander-js/extra-typings.git"
},
"files": [
"esm.mjs",
"esm.d.mts",
"index.js",
"index.d.ts"
],
"type": "commonjs",
"exports": {
".": {
"require": "./index.js",
"import": "./esm.mjs"
}
},
"types": "index.d.ts",
"tsd": {
"directory": "tests"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/commander-js/extra-typings/issues"
},
"homepage": "https://github.com/commander-js/extra-typings#readme",
"jest": {
"testEnvironment": "node",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testPathIgnorePatterns": [
"/node_modules/"
]
},
"peerDependencies": {
"commander": "~12.0.0"
},
"devDependencies": {
"@types/jest": "^29.2.6",
"@types/node": "^20.11.7",
"commander": "~12.0.0",
"jest": "^29.3.1",
"ts-jest": "^29.0.5",
"tsd": "^0.30.4",
"typescript": "^5.3.3"
}
}