package.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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.7.0",
  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. "query",
  22. "url",
  23. "parse",
  24. "stringify"
  25. ],
  26. "engines": {
  27. "node": ">=0.6"
  28. },
  29. "dependencies": {},
  30. "devDependencies": {
  31. "@ljharb/eslint-config": "^13.1.1",
  32. "browserify": "^16.2.3",
  33. "covert": "^1.1.1",
  34. "editorconfig-tools": "^0.1.1",
  35. "eslint": "^5.15.3",
  36. "evalmd": "^0.0.17",
  37. "for-each": "^0.3.3",
  38. "iconv-lite": "^0.4.24",
  39. "mkdirp": "^0.5.1",
  40. "object-inspect": "^1.6.0",
  41. "qs-iconv": "^1.0.4",
  42. "safe-publish-latest": "^1.1.2",
  43. "safer-buffer": "^2.1.2",
  44. "tape": "^4.10.1"
  45. },
  46. "scripts": {
  47. "prepublish": "safe-publish-latest && npm run dist",
  48. "pretest": "npm run --silent readme && npm run --silent lint",
  49. "test": "npm run --silent coverage",
  50. "tests-only": "node test",
  51. "readme": "evalmd README.md",
  52. "postlint": "editorconfig-tools check * lib/* test/*",
  53. "lint": "eslint lib/*.js test/*.js",
  54. "coverage": "covert test",
  55. "dist": "mkdirp dist && browserify --standalone Qs lib/index.js > dist/qs.js"
  56. },
  57. "license": "BSD-3-Clause"
  58. }