package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "yargs-unparser",
  3. "description": "Converts back a yargs argv object to its original array form",
  4. "version": "2.0.0",
  5. "keywords": [
  6. "yargs",
  7. "unparse",
  8. "expand",
  9. "inverse",
  10. "argv"
  11. ],
  12. "author": "André Cruz <andre@moxy.studio>",
  13. "engines": {
  14. "node": ">=10"
  15. },
  16. "homepage": "https://github.com/yargs/yargs-unparser",
  17. "repository": "yargs/yargs-unparser",
  18. "license": "MIT",
  19. "main": "index.js",
  20. "files": [],
  21. "scripts": {
  22. "lint": "eslint .",
  23. "fix": "eslint . --fix",
  24. "test": "jest --env node --coverage",
  25. "prerelease": "npm t && npm run lint",
  26. "precommit": "lint-staged"
  27. },
  28. "lint-staged": {
  29. "*.js": [
  30. "eslint --fix",
  31. "git add"
  32. ]
  33. },
  34. "devDependencies": {
  35. "eslint": "^6.1.0",
  36. "eslint-config-moxy": "^7.1.0",
  37. "husky": "^3.0.1",
  38. "jest": "^24.9.0",
  39. "lint-staged": "^9.5.0",
  40. "minimist": "^1.2.5",
  41. "yargs-parser": "^18.1.3"
  42. },
  43. "dependencies": {
  44. "camelcase": "^6.0.0",
  45. "decamelize": "^4.0.0",
  46. "flat": "^5.0.2",
  47. "is-plain-obj": "^2.1.0"
  48. }
  49. }