1
0
Fork 0
management/front/dkha-web-sz-main/node_modules/yargs/package.json

111 lines
2.7 KiB
JSON
Raw Normal View History

2023-12-18 13:12:25 +08:00
{
2023-12-28 23:41:32 +08:00
"_from": "yargs@^13.3.2",
"_id": "yargs@13.3.2",
2023-12-18 13:12:25 +08:00
"_inBundle": false,
2023-12-28 23:41:32 +08:00
"_integrity": "sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==",
2023-12-18 13:12:25 +08:00
"_location": "/yargs",
2023-12-28 23:41:32 +08:00
"_phantomChildren": {
2024-01-16 21:26:16 +08:00
"emoji-regex": "7.0.3",
"locate-path": "3.0.0"
2023-12-28 23:41:32 +08:00
},
2023-12-18 13:12:25 +08:00
"_requested": {
2023-12-28 23:41:32 +08:00
"type": "range",
2023-12-18 13:12:25 +08:00
"registry": true,
2023-12-28 23:41:32 +08:00
"raw": "yargs@^13.3.2",
2023-12-18 13:12:25 +08:00
"name": "yargs",
"escapedName": "yargs",
2023-12-28 23:41:32 +08:00
"rawSpec": "^13.3.2",
2023-12-18 13:12:25 +08:00
"saveSpec": null,
2023-12-28 23:41:32 +08:00
"fetchSpec": "^13.3.2"
2023-12-18 13:12:25 +08:00
},
"_requiredBy": [
2024-01-16 21:26:16 +08:00
"/sass-graph",
"/webpack-dev-server"
2023-12-18 13:12:25 +08:00
],
2024-01-16 21:26:16 +08:00
"_resolved": "https://registry.npmmirror.com/yargs/-/yargs-13.3.2.tgz",
2023-12-28 23:41:32 +08:00
"_shasum": "ad7ffefec1aa59565ac915f82dccb38a9c31a2dd",
"_spec": "yargs@^13.3.2",
2024-01-16 21:26:16 +08:00
"_where": "E:\\WebDevelop\\managment2\\management\\front\\dkha-web-sz-main\\node_modules\\sass-graph",
2023-12-18 13:12:25 +08:00
"bugs": {
"url": "https://github.com/yargs/yargs/issues"
},
2023-12-28 23:41:32 +08:00
"bundleDependencies": false,
"contributors": [
{
"name": "Yargs Contributors",
"url": "https://github.com/yargs/yargs/graphs/contributors"
}
],
2023-12-18 13:12:25 +08:00
"dependencies": {
2023-12-28 23:41:32 +08:00
"cliui": "^5.0.0",
"find-up": "^3.0.0",
"get-caller-file": "^2.0.1",
2023-12-18 13:12:25 +08:00
"require-directory": "^2.1.1",
2023-12-28 23:41:32 +08:00
"require-main-filename": "^2.0.0",
2023-12-18 13:12:25 +08:00
"set-blocking": "^2.0.0",
2023-12-28 23:41:32 +08:00
"string-width": "^3.0.0",
"which-module": "^2.0.0",
"y18n": "^4.0.0",
"yargs-parser": "^13.1.2"
2023-12-18 13:12:25 +08:00
},
2023-12-28 23:41:32 +08:00
"deprecated": false,
2023-12-18 13:12:25 +08:00
"description": "yargs the modern, pirate-themed, successor to optimist.",
"devDependencies": {
2023-12-28 23:41:32 +08:00
"chai": "^4.2.0",
"chalk": "^2.4.2",
"coveralls": "^3.0.3",
"cpr": "^3.0.1",
"cross-spawn": "^6.0.4",
"es6-promise": "^4.2.5",
2023-12-18 13:12:25 +08:00
"hashish": "0.0.4",
2023-12-28 23:41:32 +08:00
"mocha": "^5.2.0",
"nyc": "^14.1.0",
"rimraf": "^2.6.3",
"standard": "^12.0.1",
"standard-version": "^6.0.1",
"which": "^1.3.1",
"yargs-test-extends": "^1.0.1"
2023-12-18 13:12:25 +08:00
},
"engine": {
2023-12-28 23:41:32 +08:00
"node": ">=6"
2023-12-18 13:12:25 +08:00
},
"files": [
"index.js",
"yargs.js",
"lib",
"locales",
"completion.sh.hbs",
2023-12-28 23:41:32 +08:00
"completion.zsh.hbs",
2023-12-18 13:12:25 +08:00
"LICENSE"
],
2023-12-28 23:41:32 +08:00
"homepage": "https://yargs.js.org/",
2023-12-18 13:12:25 +08:00
"keywords": [
"argument",
"args",
"option",
"parser",
"parsing",
"cli",
"command"
],
"license": "MIT",
"main": "./index.js",
"name": "yargs",
"repository": {
"type": "git",
2023-12-28 23:41:32 +08:00
"url": "git+https://github.com/yargs/yargs.git"
2023-12-18 13:12:25 +08:00
},
"scripts": {
"coverage": "nyc report --reporter=text-lcov | coveralls",
"pretest": "standard",
"release": "standard-version",
2023-12-28 23:41:32 +08:00
"test": "nyc --cache mocha --require ./test/before.js --timeout=12000 --check-leaks"
2023-12-18 13:12:25 +08:00
},
"standard": {
"ignore": [
"**/example/**"
]
},
2023-12-28 23:41:32 +08:00
"version": "13.3.2"
2023-12-18 13:12:25 +08:00
}