CoolFace
Apppublic

Umama-at-Bluchip/Quick-UI

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
package.json37 linesDownload Raw Back to parseargs
1{2  "name": "@pkgjs/parseargs",3  "version": "0.11.0",4  "description": "Polyfill of future proposal for `util.parseArgs()`",5  "engines": {6    "node": ">=14"7  },8  "main": "index.js",9  "exports": {10    ".": "./index.js",11    "./package.json": "./package.json"12  },13  "scripts": {14    "coverage": "c8 --check-coverage tape 'test/*.js'",15    "test": "c8 tape 'test/*.js'",16    "posttest": "eslint .",17    "fix": "npm run posttest -- --fix"18  },19  "repository": {20    "type": "git",21    "url": "git@github.com:pkgjs/parseargs.git"22  },23  "keywords": [],24  "author": "",25  "license": "MIT",26  "bugs": {27    "url": "https://github.com/pkgjs/parseargs/issues"28  },29  "homepage": "https://github.com/pkgjs/parseargs#readme",30  "devDependencies": {31    "c8": "^7.10.0",32    "eslint": "^8.2.0",33    "eslint-plugin-node-core": "iansu/eslint-plugin-node-core",34    "tape": "^5.2.2"35  }36}37