package.json 870 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "author": "Seth Carney <scarney81@gmail.com> (https://github.com/scarney81)",
  3. "name": "pg-hstore",
  4. "description": "A module for serializing and deserializing JSON data into hstore format",
  5. "private": false,
  6. "keywords": [
  7. "pg",
  8. "postgres",
  9. "hstore"
  10. ],
  11. "license": "MIT",
  12. "version": "2.3.4",
  13. "main": "lib/index.js",
  14. "homepage": "https://github.com/scarney81/pg-hstore",
  15. "bugs": {
  16. "url": "https://github.com/scarney81/pg-hstore/issues"
  17. },
  18. "repository": {
  19. "type": "git",
  20. "url": "git@github.com:scarney81/pg-hstore.git"
  21. },
  22. "dependencies": {
  23. "underscore": "^1.13.1"
  24. },
  25. "devDependencies": {
  26. "mocha": "^2.1.0",
  27. "should": "^4.4.2"
  28. },
  29. "engines": {
  30. "node": ">= 0.8.x"
  31. },
  32. "scripts": {
  33. "test": "./node_modules/.bin/mocha --reporter spec -u bdd --require should --recursive --timeout 10000"
  34. }
  35. }