合伙人运营小程序
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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.12.2",
  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. "side-channel": "^1.0.6"
  35. },
  36. "devDependencies": {
  37. "@browserify/envify": "^6.0.0",
  38. "@browserify/uglifyify": "^6.0.0",
  39. "@ljharb/eslint-config": "^21.1.1",
  40. "aud": "^2.0.4",
  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.4.2",
  46. "eslint": "=8.8.0",
  47. "evalmd": "^0.0.19",
  48. "for-each": "^0.3.3",
  49. "glob": "=10.3.7",
  50. "has-override-mistake": "^1.0.1",
  51. "has-property-descriptors": "^1.0.2",
  52. "has-symbols": "^1.0.3",
  53. "iconv-lite": "^0.5.1",
  54. "in-publish": "^2.0.1",
  55. "jackspeak": "=2.1.1",
  56. "mkdirp": "^0.5.5",
  57. "mock-property": "^1.0.3",
  58. "module-deps": "^6.2.3",
  59. "npmignore": "^0.3.1",
  60. "nyc": "^10.3.2",
  61. "object-inspect": "^1.13.2",
  62. "qs-iconv": "^1.0.4",
  63. "safe-publish-latest": "^2.0.0",
  64. "safer-buffer": "^2.1.2",
  65. "tape": "^5.8.1",
  66. "unassertify": "^3.0.1"
  67. },
  68. "scripts": {
  69. "prepack": "npmignore --auto --commentLines=autogenerated && npm run dist",
  70. "prepublishOnly": "safe-publish-latest",
  71. "prepublish": "not-in-publish || npm run prepublishOnly",
  72. "pretest": "npm run --silent readme && npm run --silent lint",
  73. "test": "npm run tests-only",
  74. "tests-only": "nyc tape 'test/**/*.js'",
  75. "posttest": "aud --production",
  76. "readme": "evalmd README.md",
  77. "postlint": "eclint check $(git ls-files | xargs find 2> /dev/null | grep -vE 'node_modules|\\.git' | grep -v dist/)",
  78. "lint": "eslint --ext=js,mjs .",
  79. "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"
  80. },
  81. "license": "BSD-3-Clause",
  82. "publishConfig": {
  83. "ignore": [
  84. "!dist/*",
  85. "bower.json",
  86. "component.json",
  87. ".github/workflows",
  88. "logos",
  89. "tea.yaml"
  90. ]
  91. }
  92. }