forked from voxpelli/node-connect-pg-simple
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1 KB
/
package.json
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
36
37
38
39
40
{
"name": "connect-pg-simple",
"version": "3.1.0",
"description": "A simple, minimal PostgreSQL session store for Connect/Express",
"url": "http://github.com/voxpelli/node-connect-pg-simple",
"repository": {
"type": "git",
"url": "git://github.com/voxpelli/node-connect-pg-simple.git"
},
"author": {
"name": "Pelle Wessman",
"email": "pelle@kodfabrik.se",
"url": "http://kodfabrik.se/"
},
"license": "MIT",
"dependencies": {
"pg": ">=2.7.0-0 <5.0.0-0"
},
"engines": {
"node": ">=0.10.0",
"iojs": "*"
},
"main": "index.js",
"scripts": {
"test": "node -e \"require('grunt').tasks(['test']);\"",
"test-all": "node -e \"require('grunt').tasks(['test-all']);\"",
"prepush": "npm test"
},
"devDependencies": {
"chai": "^2.1.1",
"coveralls": "^2.11.2",
"grunt": "^0.4.5",
"husky": "^0.10.2",
"istanbul": "^0.3.7",
"lintlovin": "voxpelli/lintlovin#1.x",
"mocha": "^2.1.0",
"promise": "^7.0.0",
"sinon": "^1.13.0"
}
}