package.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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.4.1",
  6. "repository": {
  7. "type": "git",
  8. "url": "https://github.com/ljharb/qs.git"
  9. },
  10. "main": "lib/index.js",
  11. "contributors": [
  12. {
  13. "name": "Jordan Harband",
  14. "email": "ljharb@gmail.com",
  15. "url": "http://ljharb.codes"
  16. }
  17. ],
  18. "keywords": [
  19. "querystring",
  20. "qs"
  21. ],
  22. "engines": {
  23. "node": ">=0.6"
  24. },
  25. "devDependencies": {
  26. "@ljharb/eslint-config": "^20.1.0",
  27. "aud": "^1.1.5",
  28. "browserify": "^16.5.2",
  29. "eclint": "^2.8.1",
  30. "eslint": "^8.6.0",
  31. "evalmd": "^0.0.17",
  32. "iconv-lite": "^0.4.24",
  33. "in-publish": "^2.0.1",
  34. "mkdirp": "^0.5.1",
  35. "nyc": "^10.3.2",
  36. "qs-iconv": "^1.0.4",
  37. "safe-publish-latest": "^2.0.0",
  38. "safer-buffer": "^2.1.2",
  39. "tape": "^5.4.0"
  40. },
  41. "scripts": {
  42. "prepublishOnly": "safe-publish-latest && npm run dist",
  43. "prepublish": "not-in-publish || npm run prepublishOnly",
  44. "pretest": "npm run --silent readme && npm run --silent lint",
  45. "test": "npm run --silent tests-only",
  46. "tests-only": "nyc tape 'test/**/*.js'",
  47. "posttest": "aud --production",
  48. "readme": "evalmd README.md",
  49. "postlint": "eclint check $(git ls-files | xargs find 2> /dev/null | grep -vE 'node_modules|\\.git')",
  50. "lint": "eslint --ext=js,mjs .",
  51. "dist": "mkdirp dist && browserify --standalone Qs lib/index.js > dist/qs.js"
  52. },
  53. "license": "BSD-3-Clause",
  54. "__npminstall_done": true,
  55. "_from": "qs@6.4.1",
  56. "_resolved": "https://registry.npmmirror.com/qs/-/qs-6.4.1.tgz"
  57. }