UNPKG

1.34 kBJSONView Raw
1{
2 "name": "meow",
3 "version": "10.1.2",
4 "description": "CLI app helper",
5 "license": "MIT",
6 "repository": "sindresorhus/meow",
7 "funding": "https://github.com/sponsors/sindresorhus",
8 "author": {
9 "name": "Sindre Sorhus",
10 "email": "sindresorhus@gmail.com",
11 "url": "https://sindresorhus.com"
12 },
13 "type": "module",
14 "exports": "./index.js",
15 "engines": {
16 "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
17 },
18 "scripts": {
19 "test": "xo && ava && tsd"
20 },
21 "files": [
22 "index.js",
23 "index.d.ts"
24 ],
25 "keywords": [
26 "cli",
27 "bin",
28 "util",
29 "utility",
30 "helper",
31 "argv",
32 "command",
33 "line",
34 "meow",
35 "cat",
36 "kitten",
37 "parser",
38 "option",
39 "flags",
40 "input",
41 "cmd",
42 "console"
43 ],
44 "dependencies": {
45 "@types/minimist": "^1.2.2",
46 "camelcase-keys": "^7.0.0",
47 "decamelize": "^5.0.0",
48 "decamelize-keys": "^1.1.0",
49 "hard-rejection": "^2.1.0",
50 "minimist-options": "4.1.0",
51 "normalize-package-data": "^3.0.2",
52 "read-pkg-up": "^8.0.0",
53 "redent": "^4.0.0",
54 "trim-newlines": "^4.0.2",
55 "type-fest": "^1.2.2",
56 "yargs-parser": "^20.2.9"
57 },
58 "devDependencies": {
59 "ava": "^3.15.0",
60 "execa": "^5.1.1",
61 "indent-string": "^5.0.0",
62 "read-pkg": "^6.0.0",
63 "tsd": "^0.17.0",
64 "xo": "^0.41.0"
65 },
66 "xo": {
67 "rules": {
68 "unicorn/no-process-exit": "off"
69 }
70 },
71 "ava": {
72 "files": [
73 "test/*"
74 ]
75 }
76}