package.json 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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.10.3",
  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. "contributors": [
  15. {
  16. "name": "Jordan Harband",
  17. "email": "ljharb@gmail.com",
  18. "url": "http://ljharb.codes"
  19. }
  20. ],
  21. "keywords": [
  22. "querystring",
  23. "qs",
  24. "query",
  25. "url",
  26. "parse",
  27. "stringify"
  28. ],
  29. "engines": {
  30. "node": ">=0.6"
  31. },
  32. "dependencies": {
  33. "side-channel": "^1.0.4"
  34. },
  35. "devDependencies": {
  36. "@ljharb/eslint-config": "^20.1.0",
  37. "aud": "^1.1.5",
  38. "browserify": "^16.5.2",
  39. "eclint": "^2.8.1",
  40. "eslint": "^8.6.0",
  41. "evalmd": "^0.0.19",
  42. "for-each": "^0.3.3",
  43. "has-symbols": "^1.0.2",
  44. "iconv-lite": "^0.5.1",
  45. "in-publish": "^2.0.1",
  46. "mkdirp": "^0.5.5",
  47. "nyc": "^10.3.2",
  48. "object-inspect": "^1.12.0",
  49. "qs-iconv": "^1.0.4",
  50. "safe-publish-latest": "^2.0.0",
  51. "safer-buffer": "^2.1.2",
  52. "tape": "^5.4.0"
  53. },
  54. "scripts": {
  55. "prepublishOnly": "safe-publish-latest && npm run dist",
  56. "prepublish": "not-in-publish || npm run prepublishOnly",
  57. "pretest": "npm run --silent readme && npm run --silent lint",
  58. "test": "npm run tests-only",
  59. "tests-only": "nyc tape 'test/**/*.js'",
  60. "posttest": "aud --production",
  61. "readme": "evalmd README.md",
  62. "postlint": "eclint check * lib/* test/* !dist/*",
  63. "lint": "eslint .",
  64. "dist": "mkdirp dist && browserify --standalone Qs lib/index.js > dist/qs.js"
  65. },
  66. "license": "BSD-3-Clause",
  67. "greenkeeper": {
  68. "ignore": [
  69. "iconv-lite",
  70. "mkdirp"
  71. ]
  72. },
  73. "__npminstall_done": true,
  74. "_from": "qs@6.10.3",
  75. "_resolved": "https://registry.npmmirror.com/qs/-/qs-6.10.3.tgz"
  76. }