package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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.2.3",
  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. "dependencies": {},
  26. "devDependencies": {
  27. "browserify": "^13.0.1",
  28. "tape": "^4.6.0",
  29. "covert": "^1.1.0",
  30. "mkdirp": "^0.5.1",
  31. "eslint": "^3.1.0",
  32. "@ljharb/eslint-config": "^6.0.0",
  33. "parallelshell": "^2.0.0",
  34. "iconv-lite": "^0.4.13",
  35. "qs-iconv": "^1.0.3",
  36. "evalmd": "^0.0.17"
  37. },
  38. "scripts": {
  39. "pretest": "npm run --silent readme && npm run --silent lint",
  40. "test": "npm run --silent coverage",
  41. "tests-only": "node test",
  42. "readme": "evalmd README.md",
  43. "lint": "eslint lib/*.js text/*.js",
  44. "coverage": "covert test",
  45. "dist": "mkdirp dist && browserify --standalone Qs lib/index.js > dist/qs.js",
  46. "prepublish": "npm run dist"
  47. },
  48. "license": "BSD-3-Clause",
  49. "__npminstall_done": true,
  50. "_from": "qs@6.2.3",
  51. "_resolved": "https://registry.npmmirror.com/qs/-/qs-6.2.3.tgz"
  52. }