You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
870 B
35 lines
870 B
{
|
|
"author": "Seth Carney <scarney81@gmail.com> (https://github.com/scarney81)",
|
|
"name": "pg-hstore",
|
|
"description": "A module for serializing and deserializing JSON data into hstore format",
|
|
"private": false,
|
|
"keywords": [
|
|
"pg",
|
|
"postgres",
|
|
"hstore"
|
|
],
|
|
"license": "MIT",
|
|
"version": "2.3.4",
|
|
"main": "lib/index.js",
|
|
"homepage": "https://github.com/scarney81/pg-hstore",
|
|
"bugs": {
|
|
"url": "https://github.com/scarney81/pg-hstore/issues"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git@github.com:scarney81/pg-hstore.git"
|
|
},
|
|
"dependencies": {
|
|
"underscore": "^1.13.1"
|
|
},
|
|
"devDependencies": {
|
|
"mocha": "^2.1.0",
|
|
"should": "^4.4.2"
|
|
},
|
|
"engines": {
|
|
"node": ">= 0.8.x"
|
|
},
|
|
"scripts": {
|
|
"test": "./node_modules/.bin/mocha --reporter spec -u bdd --require should --recursive --timeout 10000"
|
|
}
|
|
}
|
|
|