-
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) · 790 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 790 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
{
"name": "pg-generic-dao",
"version": "1.1.0",
"description": "PostgreSQL DAO infrastructure to handle common database scenarios.",
"main": "index.js",
"directories": {
"test": "test"
},
"dependencies": {
"pg": "^4.4.3",
"underscore": "^1.8.3",
"promise": "^7.1.1",
"assert": "^1.3.0"
},
"devDependencies": {
"mocha": "^2.3.4"
},
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ignusin/node-generic-dao.git"
},
"keywords": [
"PostgreSQL",
"DAO"
],
"author": "Iakov Gnusin <y.gnusin@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ignusin/node-generic-dao/issues"
},
"homepage": "https://github.com/ignusin/node-generic-dao#readme"
}