forked from jtremback/minimist
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
44 lines (44 loc) · 1.12 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
{
"name": "minimist-lite",
"version": "2.3.0",
"description": "parse argument options",
"main": "index.js",
"types": "index.d.ts",
"devDependencies": {
"esbuild": "^0.25.0",
"flat": "^5.0.2",
"prettier": "^2.6.2",
"tap": "~16.2.0",
"tape": "^5.5.3"
},
"scripts": {
"prepare": "npm run build",
"format:fix": "prettier --write package.json *.markdown src/** test/** **/*.yml",
"build": "esbuild src/index.js --sourcemap --bundle --minify --outfile=index.js --format=cjs",
"test": "tap --reporter=base --branches=95 --functions=90 --lines=95 --statements=95 --coverage-report=html test/*.js"
},
"repository": {
"type": "git",
"url": "git://github.com/meszaros-lajos-gyorgy/minimist-lite"
},
"homepage": "https://github.com/meszaros-lajos-gyorgy/minimist-lite",
"keywords": [
"argv",
"getopt",
"parser",
"optimist"
],
"author": {
"name": "James Halliday",
"email": "mail@substack.net",
"url": "http://substack.net"
},
"license": "MIT",
"files": [
"index.js",
"index.js.map",
"index.d.ts",
"readme.markdown",
"LICENSE"
]
}