package.json 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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.15.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. "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. "es-define-property": "^1.0.1",
  35. "side-channel": "^1.1.1"
  36. },
  37. "devDependencies": {
  38. "@browserify/envify": "^6.0.0",
  39. "@browserify/uglifyify": "^6.0.0",
  40. "@ljharb/eslint-config": "^22.2.3",
  41. "browserify": "^16.5.2",
  42. "bundle-collapser": "^1.4.0",
  43. "common-shakeify": "~1.0.0",
  44. "eclint": "^2.8.1",
  45. "es-value-fixtures": "^1.7.1",
  46. "eslint": "^10.5.0",
  47. "evalmd": "^0.0.19",
  48. "for-each": "^0.3.5",
  49. "glob": "=10.3.7",
  50. "has-bigints": "^1.1.0",
  51. "has-override-mistake": "^1.0.1",
  52. "has-property-descriptors": "^1.0.2",
  53. "has-proto": "^1.2.0",
  54. "has-symbols": "^1.1.0",
  55. "iconv-lite": "^0.5.2",
  56. "in-publish": "^2.0.1",
  57. "jackspeak": "=2.1.1",
  58. "jiti": "^0.0.0",
  59. "mkdirp": "^0.5.5",
  60. "mock-property": "^1.1.2",
  61. "module-deps": "^6.2.3",
  62. "npmignore": "^0.3.5",
  63. "nyc": "^10.3.2",
  64. "object-inspect": "^1.13.4",
  65. "qs-iconv": "^1.0.4",
  66. "safe-publish-latest": "^2.0.0",
  67. "safer-buffer": "^2.1.2",
  68. "tape": "^5.10.2",
  69. "unassertify": "^3.0.1"
  70. },
  71. "scripts": {
  72. "prepack": "npmignore --auto --commentLines=autogenerated && npm run dist",
  73. "prepublishOnly": "safe-publish-latest",
  74. "prepublish": "not-in-publish || npm run prepublishOnly",
  75. "pretest": "npm run --silent readme && npm run --silent lint",
  76. "test": "npm run tests-only",
  77. "tests-only": "nyc tape 'test/**/*.js'",
  78. "posttest": "npx npm@'>=10.2' audit --production",
  79. "readme": "evalmd README.md",
  80. "postlint": "eclint check $(git ls-files | xargs find 2> /dev/null | grep -vE 'node_modules|\\.git' | grep -v dist/)",
  81. "lint": "eslint .",
  82. "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"
  83. },
  84. "license": "BSD-3-Clause",
  85. "publishConfig": {
  86. "ignore": [
  87. "!dist/*",
  88. "bower.json",
  89. "component.json",
  90. ".github/workflows",
  91. "logos",
  92. "tea.yaml"
  93. ]
  94. }
  95. }