UNPKG

1.75 kBJSONView Raw
1{
2 "name": "yargs",
3 "version": "15.1.0",
4 "description": "yargs the modern, pirate-themed, successor to optimist.",
5 "main": "./index.js",
6 "contributors": [
7 {
8 "name": "Yargs Contributors",
9 "url": "https://github.com/yargs/yargs/graphs/contributors"
10 }
11 ],
12 "files": [
13 "index.js",
14 "yargs.js",
15 "lib",
16 "locales",
17 "completion.sh.hbs",
18 "completion.zsh.hbs",
19 "LICENSE"
20 ],
21 "dependencies": {
22 "cliui": "^6.0.0",
23 "decamelize": "^1.2.0",
24 "find-up": "^4.1.0",
25 "get-caller-file": "^2.0.1",
26 "require-directory": "^2.1.1",
27 "require-main-filename": "^2.0.0",
28 "set-blocking": "^2.0.0",
29 "string-width": "^4.2.0",
30 "which-module": "^2.0.0",
31 "y18n": "^4.0.0",
32 "yargs-parser": "^16.1.0"
33 },
34 "devDependencies": {
35 "c8": "^6.0.1",
36 "chai": "^4.2.0",
37 "chalk": "^2.4.2",
38 "coveralls": "^3.0.3",
39 "cpr": "^3.0.1",
40 "cross-spawn": "^6.0.4",
41 "es6-promise": "^4.2.5",
42 "hashish": "0.0.4",
43 "mocha": "^5.2.0",
44 "rimraf": "^2.6.3",
45 "standard": "^12.0.1",
46 "which": "^1.3.1",
47 "yargs-test-extends": "^1.0.1"
48 },
49 "scripts": {
50 "fix": "standard --fix",
51 "posttest": "standard",
52 "test": "c8 --reporter=html --reporter=text mocha --require ./test/before.js --timeout=12000 --check-leaks",
53 "coverage": "c8 report --reporter=text-lcov | coveralls"
54 },
55 "repository": {
56 "type": "git",
57 "url": "https://github.com/yargs/yargs.git"
58 },
59 "homepage": "https://yargs.js.org/",
60 "standard": {
61 "ignore": [
62 "**/example/**"
63 ]
64 },
65 "keywords": [
66 "argument",
67 "args",
68 "option",
69 "parser",
70 "parsing",
71 "cli",
72 "command"
73 ],
74 "license": "MIT",
75 "engines": {
76 "node": ">=8"
77 }
78}