UNPKG

1.77 kBJSONView Raw
1{
2 "name": "yargs",
3 "version": "13.2.2",
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": "^4.0.0",
23 "find-up": "^3.0.0",
24 "get-caller-file": "^2.0.1",
25 "os-locale": "^3.1.0",
26 "require-directory": "^2.1.1",
27 "require-main-filename": "^2.0.0",
28 "set-blocking": "^2.0.0",
29 "string-width": "^3.0.0",
30 "which-module": "^2.0.0",
31 "y18n": "^4.0.0",
32 "yargs-parser": "^13.0.0"
33 },
34 "devDependencies": {
35 "chai": "^4.2.0",
36 "chalk": "^2.4.2",
37 "coveralls": "^3.0.2",
38 "cpr": "^3.0.1",
39 "cross-spawn": "^6.0.4",
40 "es6-promise": "^4.2.5",
41 "hashish": "0.0.4",
42 "mocha": "^5.2.0",
43 "nyc": "^13.2.0",
44 "rimraf": "^2.6.3",
45 "standard": "^12.0.1",
46 "standard-version": "^5.0.0",
47 "which": "^1.3.1",
48 "yargs-test-extends": "^1.0.1"
49 },
50 "scripts": {
51 "pretest": "standard",
52 "test": "nyc --cache mocha --require ./test/before.js --timeout=12000 --check-leaks",
53 "coverage": "nyc report --reporter=text-lcov | coveralls",
54 "release": "standard-version"
55 },
56 "repository": {
57 "type": "git",
58 "url": "https://github.com/yargs/yargs.git"
59 },
60 "homepage": "https://yargs.js.org/",
61 "standard": {
62 "ignore": [
63 "**/example/**"
64 ]
65 },
66 "keywords": [
67 "argument",
68 "args",
69 "option",
70 "parser",
71 "parsing",
72 "cli",
73 "command"
74 ],
75 "license": "MIT",
76 "engine": {
77 "node": ">=6"
78 }
79}