forked from scarney81/pg-hstore
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 872 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 872 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"author": "Seth Carney <scarney81@gmail.com> (https://github.com/scarney81)",
"name": "pg-hstore",
"description": "An module for serializing and deserializing JSON data in to hstore format",
"private": false,
"keywords": [
"pg",
"postgres",
"hstore"
],
"license": "MIT",
"version": "2.3.3",
"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"
}
}