Files
codeql-action/node_modules/yargs-parser/package.json
T

93 lines
2.5 KiB
JSON
Raw Normal View History

{
2020-05-12 12:11:25 +01:00
"name": "yargs-parser",
2022-09-02 18:02:07 +01:00
"version": "21.1.1",
"description": "the mighty option parser used by yargs",
2021-10-21 15:24:20 -07:00
"main": "build/index.cjs",
"exports": {
".": [
{
"import": "./build/lib/index.js",
"require": "./build/index.cjs"
},
"./build/index.cjs"
2022-09-02 18:02:07 +01:00
],
"./browser": [
"./browser.js"
2021-10-21 15:24:20 -07:00
]
},
"type": "module",
"module": "./build/lib/index.js",
2020-05-12 12:11:25 +01:00
"scripts": {
2021-10-21 15:24:20 -07:00
"check": "standardx '**/*.ts' && standardx '**/*.js' && standardx '**/*.cjs'",
"fix": "standardx --fix '**/*.ts' && standardx --fix '**/*.js' && standardx --fix '**/*.cjs'",
"pretest": "rimraf build && tsc -p tsconfig.test.json && cross-env NODE_ENV=test npm run build:cjs",
"test": "c8 --reporter=text --reporter=html mocha test/*.cjs",
2022-02-01 18:01:11 +00:00
"test:esm": "c8 --reporter=text --reporter=html mocha test/*.mjs",
2021-10-21 15:24:20 -07:00
"test:browser": "start-server-and-test 'serve ./ -p 8080' http://127.0.0.1:8080/package.json 'node ./test/browser/yargs-test.cjs'",
"pretest:typescript": "npm run pretest",
"test:typescript": "c8 mocha ./build/test/typescript/*.js",
"coverage": "c8 report --check-coverage",
"precompile": "rimraf build",
"compile": "tsc",
"postcompile": "npm run build:cjs",
"build:cjs": "rollup -c",
"prepare": "npm run compile"
},
2020-05-12 12:11:25 +01:00
"repository": {
"type": "git",
"url": "https://github.com/yargs/yargs-parser.git"
},
"keywords": [
"argument",
"parser",
"yargs",
"command",
"cli",
"parsing",
"option",
"args",
"argument"
],
2020-05-12 12:11:25 +01:00
"author": "Ben Coe <ben@npmjs.com>",
"license": "ISC",
2020-05-12 12:11:25 +01:00
"devDependencies": {
2021-10-21 15:24:20 -07:00
"@types/chai": "^4.2.11",
2022-02-01 18:01:11 +00:00
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.4",
2021-10-21 15:24:20 -07:00
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"c8": "^7.3.0",
2020-05-12 12:11:25 +01:00
"chai": "^4.2.0",
2021-10-21 15:24:20 -07:00
"cross-env": "^7.0.2",
"eslint": "^7.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"gts": "^3.0.0",
2022-09-02 18:02:07 +01:00
"mocha": "^10.0.0",
"puppeteer": "^16.0.0",
2021-10-21 15:24:20 -07:00
"rimraf": "^3.0.2",
"rollup": "^2.22.1",
"rollup-plugin-cleanup": "^3.1.1",
2022-09-02 18:02:07 +01:00
"rollup-plugin-ts": "^3.0.2",
"serve": "^14.0.0",
2021-10-21 15:24:20 -07:00
"standardx": "^7.0.0",
"start-server-and-test": "^1.11.2",
"ts-transform-default-export": "^1.0.2",
"typescript": "^4.0.0"
},
2020-05-12 12:11:25 +01:00
"files": [
2021-10-21 15:24:20 -07:00
"browser.js",
"build",
2022-09-02 18:02:07 +01:00
"!*.d.ts",
"!*.d.cts"
2020-05-12 12:11:25 +01:00
],
"engines": {
2022-02-01 18:01:11 +00:00
"node": ">=12"
2021-10-21 15:24:20 -07:00
},
"standardx": {
"ignore": [
"build"
]
2020-05-12 12:11:25 +01:00
}
2022-02-24 17:03:29 +00:00
}