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

package.json 919B

1234567891011121314151617181920212223242526272829303132
  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. "pretest": "npm run build",
  9. "test": "istanbul cover jasmine-runner.js"
  10. },
  11. "repository": {
  12. "type": "git",
  13. "url": "git+https://github.com/Alpha-Atom/js-query-string.git"
  14. },
  15. "author": "Matt Coles",
  16. "license": "MIT",
  17. "bugs": {
  18. "url": "https://github.com/Alpha-Atom/js-query-string/issues"
  19. },
  20. "homepage": "https://github.com/Alpha-Atom/js-query-string#readme",
  21. "devDependencies": {
  22. "babel-cli": "^6.7.5",
  23. "babel-preset-es2015": "^6.6.0",
  24. "coveralls": "^2.11.9",
  25. "istanbul": "^0.4.3",
  26. "jasmine": "^2.4.1",
  27. "jasmine-spec-reporter": "^2.4.0",
  28. "jshint": "^2.9.1",
  29. "uglify-js": "^2.6.2"
  30. }
  31. }