-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 850 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 850 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
{
"name": "@dkh-dev/parse-argv",
"version": "2.3.1",
"description": "Parse process arguments",
"main": "index.js",
"files": [
"index.js"
],
"devDependencies": {
"@dkh-dev/eslint-config": "^1.6.2",
"tape": "^5.0.1"
},
"scripts": {
"test": "node test parse --a=b -b -c d e --e --f=\"g h\" -i=123 -j=/k l/ -k false",
"prepublishOnly": "npm test"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/dkh-dev/parse-argv.git"
},
"keywords": [
"argv",
"argument",
"arguments",
"parse",
"parser",
"nodejs",
"process"
],
"author": "Hoang <dangkyokhoang@gmail.com> (https://dangkyokhoang.github.io/)",
"license": "ISC",
"bugs": {
"url": "https://github.com/dkh-dev/parse-argv/issues"
},
"homepage": "https://github.com/dkh-dev/parse-argv#readme"
}