The LM Control website. Simple yet efficient.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

package.json 1.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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.9.6",
  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. "contributors": [
  15. {
  16. "name": "Jordan Harband",
  17. "email": "ljharb@gmail.com",
  18. "url": "http://ljharb.codes"
  19. }
  20. ],
  21. "keywords": [
  22. "querystring",
  23. "qs",
  24. "query",
  25. "url",
  26. "parse",
  27. "stringify"
  28. ],
  29. "engines": {
  30. "node": ">=0.6"
  31. },
  32. "dependencies": {},
  33. "devDependencies": {
  34. "@ljharb/eslint-config": "^17.3.0",
  35. "aud": "^1.1.3",
  36. "browserify": "^16.5.2",
  37. "eclint": "^2.8.1",
  38. "eslint": "^7.17.0",
  39. "evalmd": "^0.0.19",
  40. "for-each": "^0.3.3",
  41. "has-symbols": "^1.0.1",
  42. "iconv-lite": "^0.5.1",
  43. "mkdirp": "^0.5.5",
  44. "nyc": "^10.3.2",
  45. "object-inspect": "^1.9.0",
  46. "qs-iconv": "^1.0.4",
  47. "safe-publish-latest": "^1.1.4",
  48. "safer-buffer": "^2.1.2",
  49. "tape": "^5.1.1"
  50. },
  51. "scripts": {
  52. "prepublish": "safe-publish-latest && npm run dist",
  53. "pretest": "npm run --silent readme && npm run --silent lint",
  54. "test": "npm run tests-only",
  55. "tests-only": "nyc tape 'test/**/*.js'",
  56. "posttest": "aud --production",
  57. "readme": "evalmd README.md",
  58. "postlint": "eclint check * lib/* test/*",
  59. "lint": "eslint lib/*.js test/*.js",
  60. "dist": "mkdirp dist && browserify --standalone Qs lib/index.js > dist/qs.js"
  61. },
  62. "license": "BSD-3-Clause",
  63. "greenkeeper": {
  64. "ignore": [
  65. "iconv-lite",
  66. "mkdirp"
  67. ]
  68. }
  69. }