Small utility for serialising JS objects to query strings for use in URLs

package.json 805B

12345678910111213141516171819202122232425262728
  1. {
  2. "name": "js-query-string",
  3. "version": "0.0.1",
  4. "description": "Prepare native JS objects to be used in URL queries",
  5. "main": "lib/index.js",
  6. "scripts": {
  7. "build": "babel src -d lib && jshint lib/index.js && uglifyjs lib/index.js > lib/index.min.js",
  8. "test": "echo \"Error: no test specified\" && exit 1"
  9. },
  10. "repository": {
  11. "type": "git",
  12. "url": "git+https://github.com/Alpha-Atom/js-query-string.git"
  13. },
  14. "author": "Matt Coles",
  15. "license": "MIT",
  16. "bugs": {
  17. "url": "https://github.com/Alpha-Atom/js-query-string/issues"
  18. },
  19. "homepage": "https://github.com/Alpha-Atom/js-query-string#readme",
  20. "devDependencies": {
  21. "babel-cli": "^6.7.5",
  22. "babel-preset-es2015": "^6.6.0",
  23. "jasmine": "^2.4.1",
  24. "jshint": "^2.9.1",
  25. "uglify-js": "^2.6.2"
  26. }
  27. }