-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.47 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
{
"name": "command-line-basics",
"version": "2.0.1",
"description": "Auto-add help and version CLI and update notification checks",
"main": "src/index.js",
"type": "module",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./src/index.js"
}
},
"scripts": {
"tsc": "tsc",
"prepublishOnly": "pnpm i",
"eslint": "eslint .",
"lint": "npm run eslint",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brettz9/command-line-basics.git"
},
"keywords": [
"cli",
"command-line-args",
"command-line-usage",
"update-notifier"
],
"author": "Brett Zamir",
"contributors": [],
"license": "MIT",
"bugs": "https://github.com/brettz9/command-line-basics/issues",
"homepage": "https://github.com/brettz9/command-line-basics#readme",
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/eslint-parser": "^7.25.1",
"@babel/plugin-syntax-top-level-await": "^7.14.5",
"@types/command-line-args": "^5.2.3",
"@types/command-line-usage": "^5.0.4",
"@types/node": "^22.7.4",
"@types/update-notifier": "^6.0.8",
"eslint": "^9.11.1",
"eslint-config-ash-nazg": "^36.17.1",
"typescript": "^5.6.2"
},
"dependencies": {
"command-line-args": "^6.0.0",
"command-line-usage": "^7.0.3",
"update-notifier": "^7.3.1"
}
}