Skip to content

Latest commit

 

History

History
115 lines (115 loc) · 2.66 KB

File metadata and controls

115 lines (115 loc) · 2.66 KB
 
Jan 18, 2019
Jan 18, 2019
1
{
2
"name": "jackspeak",
Feb 7, 2026
Feb 7, 2026
3
"version": "4.2.3",
Jan 18, 2019
Jan 18, 2019
4
"description": "A very strict and proper argument parser.",
Sep 27, 2023
Sep 27, 2023
5
"tshy": {
6
"main": true,
7
"exports": {
8
"./package.json": "./package.json",
Feb 5, 2026
Feb 5, 2026
9
".": "./src/index.js",
10
"./min": {
11
"import": {
12
"types": "./dist/esm/index.d.ts",
13
"default": "./dist/esm/index.min.js"
14
},
15
"require": {
16
"types": "./dist/commonjs/index.d.ts",
17
"default": "./dist/commonjs/index.min.js"
18
}
Feb 5, 2026
Feb 5, 2026
19
}
Sep 27, 2023
Sep 27, 2023
20
}
21
},
22
"main": "./dist/commonjs/index.js",
23
"types": "./dist/commonjs/index.d.ts",
Sep 25, 2023
Sep 25, 2023
24
"type": "module",
Apr 10, 2023
Apr 10, 2023
25
"exports": {
Sep 25, 2023
Sep 25, 2023
26
"./package.json": "./package.json",
Apr 10, 2023
Apr 10, 2023
27
".": {
28
"import": {
Sep 25, 2023
Sep 25, 2023
29
"types": "./dist/esm/index.d.ts",
30
"default": "./dist/esm/index.js"
Apr 10, 2023
Apr 10, 2023
31
},
32
"require": {
Sep 25, 2023
Sep 25, 2023
33
"types": "./dist/commonjs/index.d.ts",
34
"default": "./dist/commonjs/index.js"
Apr 10, 2023
Apr 10, 2023
35
}
Feb 5, 2026
Feb 5, 2026
36
},
37
"./min": {
38
"import": {
39
"types": "./dist/esm/index.d.ts",
40
"default": "./dist/esm/index.min.js"
41
},
42
"require": {
43
"types": "./dist/commonjs/index.d.ts",
44
"default": "./dist/commonjs/index.min.js"
45
}
Apr 10, 2023
Apr 10, 2023
46
}
47
},
48
"files": [
49
"dist"
50
],
Jan 18, 2019
Jan 18, 2019
51
"scripts": {
Jan 20, 2019
Jan 20, 2019
52
"build-examples": "for i in examples/*.js ; do node $i -h > ${i/.js/.txt}; done",
Jan 18, 2019
Jan 18, 2019
53
"preversion": "npm test",
54
"postversion": "npm publish",
Apr 10, 2023
Apr 10, 2023
55
"prepublishOnly": "git push origin --follow-tags",
Feb 5, 2026
Feb 5, 2026
56
"prepare": "tshy && bash build.sh",
Apr 10, 2023
Apr 10, 2023
57
"pretest": "npm run prepare",
58
"presnap": "npm run prepare",
Sep 25, 2023
Sep 25, 2023
59
"test": "tap",
60
"snap": "tap",
Jun 3, 2024
Jun 3, 2024
61
"format": "prettier --write . --log-level warn",
Sep 25, 2023
Sep 25, 2023
62
"typedoc": "typedoc --tsconfig .tshy/esm.json ./src/*.ts"
Jan 18, 2019
Jan 18, 2019
63
},
Apr 10, 2023
Apr 10, 2023
64
"license": "BlueOak-1.0.0",
Apr 10, 2023
Apr 10, 2023
65
"prettier": {
May 18, 2024
May 18, 2024
66
"experimentalTernaries": true,
Apr 10, 2023
Apr 10, 2023
67
"semi": false,
68
"printWidth": 75,
69
"tabWidth": 2,
70
"useTabs": false,
71
"singleQuote": true,
72
"jsxSingleQuote": false,
73
"bracketSameLine": true,
74
"arrowParens": "avoid",
75
"endOfLine": "lf"
76
},
Jan 18, 2019
Jan 18, 2019
77
"devDependencies": {
Feb 5, 2026
Feb 5, 2026
78
"@types/node": "^25.2.0",
Feb 7, 2026
Feb 7, 2026
79
"esbuild": "^0.27.3",
Sep 23, 2024
Sep 23, 2024
80
"prettier": "^3.3.3",
Feb 7, 2026
Feb 7, 2026
81
"tap": "^21.5.1",
82
"tshy": "^3.1.3",
Feb 5, 2026
Feb 5, 2026
83
"typedoc": "^0.28.16"
Jan 18, 2019
Jan 18, 2019
84
},
Jan 18, 2019
Jan 18, 2019
85
"dependencies": {
Feb 5, 2026
Feb 5, 2026
86
"@isaacs/cliui": "^9.0.0"
Jan 20, 2019
Jan 20, 2019
87
},
Apr 10, 2023
Apr 10, 2023
88
"engines": {
Jul 8, 2024
Jul 8, 2024
89
"node": "20 || >=22"
Apr 10, 2023
Apr 10, 2023
90
},
91
"funding": {
92
"url": "https://github.com/sponsors/isaacs"
93
},
Jan 20, 2019
Jan 20, 2019
94
"repository": {
95
"type": "git",
96
"url": "git+https://github.com/isaacs/jackspeak.git"
97
},
98
"keywords": [
99
"argument",
100
"parser",
101
"args",
102
"option",
103
"flag",
104
"cli",
105
"command",
106
"line",
107
"parse",
108
"parsing"
109
],
Jan 21, 2019
Jan 21, 2019
110
"author": "Isaac Z. Schlueter <i@izs.me>",
Aug 14, 2024
Aug 14, 2024
111
"tap": {
112
"typecheck": true
Sep 23, 2024
Sep 23, 2024
113
},
114
"module": "./dist/esm/index.js"
Jan 18, 2019
Jan 18, 2019
115
}