package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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.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. ],
  22. "engines": {
  23. "node": ">=0.6"
  24. },
  25. "dependencies": {},
  26. "devDependencies": {
  27. "@ljharb/eslint-config": "^11.0.0",
  28. "browserify": "^14.1.0",
  29. "covert": "^1.1.0",
  30. "eslint": "^3.17.0",
  31. "evalmd": "^0.0.17",
  32. "iconv-lite": "^0.4.15",
  33. "mkdirp": "^0.5.1",
  34. "parallelshell": "^2.0.0",
  35. "qs-iconv": "^1.0.4",
  36. "safe-publish-latest": "^1.1.1",
  37. "tape": "^4.6.3"
  38. },
  39. "scripts": {
  40. "prepublish": "safe-publish-latest && npm run dist",
  41. "pretest": "npm run --silent readme && npm run --silent lint",
  42. "test": "npm run --silent coverage",
  43. "tests-only": "node test",
  44. "readme": "evalmd README.md",
  45. "lint": "eslint lib/*.js test/*.js",
  46. "coverage": "covert test",
  47. "dist": "mkdirp dist && browserify --standalone Qs lib/index.js > dist/qs.js"
  48. },
  49. "license": "BSD-3-Clause"
  50. }