package.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. {
  2. "name": "yargs-unparser",
  3. "description": "Converts back a yargs argv object to its original array form",
  4. "version": "1.6.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": ">=6"
  15. },
  16. "homepage": "https://github.com/yargs/yargs-unparser",
  17. "repository": {
  18. "type": "git",
  19. "url": "git@github.com:yargs/yargs-unparser.git"
  20. },
  21. "license": "MIT",
  22. "main": "index.js",
  23. "files": [],
  24. "scripts": {
  25. "lint": "eslint .",
  26. "test": "jest --env node --coverage",
  27. "prerelease": "npm t && npm run lint",
  28. "release": "standard-version",
  29. "precommit": "lint-staged",
  30. "commitmsg": "commitlint -e $GIT_PARAMS"
  31. },
  32. "standard-version": {
  33. "scripts": {
  34. "posttag": "git push --follow-tags origin master"
  35. }
  36. },
  37. "lint-staged": {
  38. "*.js": [
  39. "eslint --fix",
  40. "git add"
  41. ]
  42. },
  43. "commitlint": {
  44. "extends": [
  45. "@commitlint/config-conventional"
  46. ]
  47. },
  48. "devDependencies": {
  49. "@commitlint/cli": "^8.1.0",
  50. "@commitlint/config-conventional": "^8.1.0",
  51. "eslint": "^6.1.0",
  52. "eslint-config-moxy": "^7.1.0",
  53. "husky": "^3.0.1",
  54. "jest": "^24.8.0",
  55. "lint-staged": "^9.2.1",
  56. "minimist": "^1.2.0",
  57. "standard-version": "^7.0.0",
  58. "yargs-parser": "^13.1.1"
  59. },
  60. "dependencies": {
  61. "flat": "^4.1.0",
  62. "lodash": "^4.17.15",
  63. "yargs": "^13.3.0"
  64. }
  65. }