package.json 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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.9.7",
  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. "devDependencies": {
  33. "@ljharb/eslint-config": "^20.1.0",
  34. "aud": "^1.1.5",
  35. "browserify": "^16.5.2",
  36. "eclint": "^2.8.1",
  37. "eslint": "^8.6.0",
  38. "evalmd": "^0.0.19",
  39. "for-each": "^0.3.3",
  40. "has-symbols": "^1.0.2",
  41. "iconv-lite": "^0.5.1",
  42. "in-publish": "^2.0.1",
  43. "mkdirp": "^0.5.5",
  44. "nyc": "^10.3.2",
  45. "object-inspect": "^1.12.0",
  46. "qs-iconv": "^1.0.4",
  47. "safe-publish-latest": "^2.0.0",
  48. "safer-buffer": "^2.1.2",
  49. "tape": "^5.4.0"
  50. },
  51. "scripts": {
  52. "prepublishOnly": "safe-publish-latest && npm run dist",
  53. "prepublish": "not-in-publish || npm run prepublishOnly",
  54. "pretest": "npm run --silent readme && npm run --silent lint",
  55. "test": "npm run tests-only",
  56. "tests-only": "nyc tape 'test/**/*.js'",
  57. "posttest": "aud --production",
  58. "readme": "evalmd README.md",
  59. "postlint": "eclint check * lib/* test/* !dist/*",
  60. "lint": "eslint .",
  61. "dist": "mkdirp dist && browserify --standalone Qs lib/index.js > dist/qs.js"
  62. },
  63. "license": "BSD-3-Clause",
  64. "greenkeeper": {
  65. "ignore": [
  66. "iconv-lite",
  67. "mkdirp"
  68. ]
  69. }
  70. }