-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 979 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 979 Bytes
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
{
"name": "@munesoft/flagx",
"version": "1.10.20",
"description": "Tiny CLI flag utility with superpowers. A has-flag alternative for Node.js with zero dependencies.",
"type": "module",
"main": "src/index.js",
"exports": {
".": "./src/index.js"
},
"scripts": {
"test": "node test/flagx.test.js"
},
"keywords": [
"cli",
"flag",
"flags",
"argv",
"args",
"parser",
"cli flag parser",
"nodejs argv parser",
"has-flag alternative",
"minimist alternative",
"command line flags javascript"
],
"author": {
"name": "munesoft",
"url": "https://github.com/munesoft"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/munesoft/flagx.git"
},
"bugs": {
"url": "https://github.com/munesoft/flagx/issues"
},
"homepage": "https://github.com/munesoft/flagx#readme",
"files": [
"src/",
"README.md"
],
"engines": {
"node": ">=14.0.0"
}
}