package.json 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. {
  2. "name": "qs",
  3. "description": "A querystring parser that supports nesting and arrays, with a depth limit",
  4. "homepage": "https://github.com/ljharb/qs",
  5. "version": "6.13.0",
  6. "repository": {
  7. "type": "git",
  8. "url": "https://github.com/ljharb/qs.git"
  9. },
  10. "funding": {
  11. "url": "https://github.com/sponsors/ljharb"
  12. },
  13. "main": "lib/index.js",
  14. "sideEffects": false,
  15. "contributors": [
  16. {
  17. "name": "Jordan Harband",
  18. "email": "ljharb@gmail.com",
  19. "url": "http://ljharb.codes"
  20. }
  21. ],
  22. "keywords": [
  23. "querystring",
  24. "qs",
  25. "query",
  26. "url",
  27. "parse",
  28. "stringify"
  29. ],
  30. "engines": {
  31. "node": ">=0.6"
  32. },
  33. "dependencies": {
  34. "side-channel": "^1.0.6"
  35. },
  36. "devDependencies": {
  37. "@browserify/envify": "^6.0.0",
  38. "@browserify/uglifyify": "^6.0.0",
  39. "@ljharb/eslint-config": "^21.1.1",
  40. "browserify": "^16.5.2",
  41. "bundle-collapser": "^1.4.0",
  42. "common-shakeify": "~1.0.0",
  43. "eclint": "^2.8.1",
  44. "es-value-fixtures": "^1.4.2",
  45. "eslint": "=8.8.0",
  46. "evalmd": "^0.0.19",
  47. "for-each": "^0.3.3",
  48. "glob": "=10.3.7",
  49. "has-override-mistake": "^1.0.1",
  50. "has-property-descriptors": "^1.0.2",
  51. "has-symbols": "^1.0.3",
  52. "iconv-lite": "^0.5.1",
  53. "in-publish": "^2.0.1",
  54. "jackspeak": "=2.1.1",
  55. "mkdirp": "^0.5.5",
  56. "mock-property": "^1.0.3",
  57. "module-deps": "^6.2.3",
  58. "npmignore": "^0.3.1",
  59. "nyc": "^10.3.2",
  60. "object-inspect": "^1.13.2",
  61. "qs-iconv": "^1.0.4",
  62. "safe-publish-latest": "^2.0.0",
  63. "safer-buffer": "^2.1.2",
  64. "tape": "^5.8.1",
  65. "unassertify": "^3.0.1"
  66. },
  67. "scripts": {
  68. "prepack": "npmignore --auto --commentLines=autogenerated && npm run dist",
  69. "prepublishOnly": "safe-publish-latest",
  70. "prepublish": "not-in-publish || npm run prepublishOnly",
  71. "pretest": "npm run --silent readme && npm run --silent lint",
  72. "test": "npm run tests-only",
  73. "tests-only": "nyc tape 'test/**/*.js'",
  74. "posttest": "npx npm@'>=10.2' audit --production",
  75. "readme": "evalmd README.md",
  76. "postlint": "eclint check $(git ls-files | xargs find 2> /dev/null | grep -vE 'node_modules|\\.git' | grep -v dist/)",
  77. "lint": "eslint --ext=js,mjs .",
  78. "dist": "mkdirp dist && browserify --standalone Qs -g unassertify -g @browserify/envify -g [@browserify/uglifyify --mangle.keep_fnames --compress.keep_fnames --format.indent_level=1 --compress.arrows=false --compress.passes=4 --compress.typeofs=false] -p common-shakeify -p bundle-collapser/plugin lib/index.js > dist/qs.js"
  79. },
  80. "license": "BSD-3-Clause",
  81. "publishConfig": {
  82. "ignore": [
  83. "!dist/*",
  84. "bower.json",
  85. "component.json",
  86. ".github/workflows",
  87. "logos",
  88. "tea.yaml"
  89. ]
  90. }
  91. }