-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.71 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
66
67
68
69
70
71
72
{
"name": "clinei",
"author": "Arth",
"version": "1.0.2",
"description": "clinei is a command line interface handler to make it easy to build cli programs",
"types": "./types/index.d.ts",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./types/index.d.ts"
}
},
"files": [
"/dist",
"/types",
"config.json"
],
"scripts": {
"test": "npm run build && node ./test/cjs/index.js print -u Arth --age 120 --store",
"prettier": "prettier --write . & prettier --check .",
"build": "rm -rf dist & tsup & prettier --write . & prettier --check . & eslint ./ --fix --format=pretty",
"prepublishOnly": "npm run build & npm run prettier"
},
"engines": {
"node": ">=12"
},
"keywords": [
"cli",
"command",
"line",
"interface",
"handler",
"command-line",
"command-line-interface",
"args",
"arguments",
"arg",
"argument",
"command-line-arguments",
"command-line-argument",
"command-line-args",
"command-line-arg",
"cli-args",
"cli-arg",
"program",
"program-commands",
"cli-program"
],
"repository": {
"type": "git",
"url": "https://github.com/4i8/clinei.git"
},
"bugs": {
"url": "https://github.com/4i8/clinei/issues"
},
"homepage": "https://github.com/4i8/clinei#readme",
"license": "Apache-2.0",
"dependencies": {
"glob": "^8.0.3"
},
"devDependencies": {
"@types/glob": "^8.0.1",
"@types/node": "^18.14.0",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"eslint-formatter-pretty": "^4.1.0",
"prettier": "^2.8.4",
"tsup": "^6.6.3"
}
}