-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.21 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
{
"name": "argv-walk",
"version": "1.0.3",
"description": "Walk an argv array with a handler function using minimist conventions",
"main": "index.js",
"types": "index.d.ts",
"files": [
"index.d.ts"
],
"scripts": {
"fix": "yarn pretty && yarn lint && yarn spell",
"pretty": "prettier './**/*.{ts,js,json,md}' --write --ignore-path .eslintignore",
"lint": "eslint .",
"spell": "cspell './**/*' --config .vscode/cSpell.json",
"ncu": "ncu",
"cover": "nyc yarn test",
"test": "spoon './tests/**/*.test.js'"
},
"author": "Adam Jarret <adam@atj.me> (https://atj.me)",
"license": "MIT",
"homepage": "https://github.com/adamjarret/argv-walk",
"repository": {
"type": "git",
"url": "https://github.com/adamjarret/argv-walk.git"
},
"keywords": [
"argv",
"args",
"arguments",
"parse",
"parser",
"minimist",
"optimist",
"getopt",
"meow",
"commander",
"yargs",
"yargs-parser"
],
"devDependencies": {
"cspell": "^4.0.63",
"eslint": "^7.2.0",
"eslint-config-prettier": "^6.11.0",
"npm-check-updates": "^6.0.1",
"nyc": "^15.1.0",
"prettier": "^2.0.5",
"spooning": "^1.1.3",
"spooning-cli": "^1.0.6"
}
}