package.json 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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.11.2",
  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": "^21.0.1",
  37. "aud": "^2.0.2",
  38. "browserify": "^16.5.2",
  39. "eclint": "^2.8.1",
  40. "eslint": "=8.8.0",
  41. "evalmd": "^0.0.19",
  42. "for-each": "^0.3.3",
  43. "has-override-mistake": "^1.0.0",
  44. "has-property-descriptors": "^1.0.0",
  45. "has-symbols": "^1.0.3",
  46. "iconv-lite": "^0.5.1",
  47. "in-publish": "^2.0.1",
  48. "mkdirp": "^0.5.5",
  49. "mock-property": "^1.0.0",
  50. "npmignore": "^0.3.0",
  51. "nyc": "^10.3.2",
  52. "object-inspect": "^1.12.3",
  53. "qs-iconv": "^1.0.4",
  54. "safe-publish-latest": "^2.0.0",
  55. "safer-buffer": "^2.1.2",
  56. "tape": "^5.6.3"
  57. },
  58. "scripts": {
  59. "prepack": "npmignore --auto --commentLines=autogenerated",
  60. "prepublishOnly": "safe-publish-latest && npm run dist",
  61. "prepublish": "not-in-publish || npm run prepublishOnly",
  62. "pretest": "npm run --silent readme && npm run --silent lint",
  63. "test": "npm run tests-only",
  64. "tests-only": "nyc tape 'test/**/*.js'",
  65. "posttest": "aud --production",
  66. "readme": "evalmd README.md",
  67. "postlint": "eclint check $(git ls-files | xargs find 2> /dev/null | grep -vE 'node_modules|\\.git' | grep -v dist/)",
  68. "lint": "eslint --ext=js,mjs .",
  69. "dist": "mkdirp dist && browserify --standalone Qs lib/index.js > dist/qs.js"
  70. },
  71. "license": "BSD-3-Clause",
  72. "publishConfig": {
  73. "ignore": [
  74. "!dist/*",
  75. "bower.json",
  76. "component.json",
  77. ".github/workflows"
  78. ]
  79. }
  80. }