-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.01 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
41
42
43
44
45
{
"name": "gatepost",
"version": "7.2.0",
"description": "A reverse ORM for Postgres.",
"keywords": [
"pg",
"postgres",
"postgresql",
"database",
"db",
"orm",
"query",
"sql"
],
"main": "index.js",
"homepage": "https://github.com/fritzy/gatepost",
"repository": {
"type": "git",
"url": "git://github.com/fritzy/gatepost.git"
},
"scripts": {
"test": "lab -a code -c && echo \"Linting...\" && eslint . && echo done",
"dropdb": "dropdb --if-exists gatepost_test",
"createdb": "createdb gatepost_test",
"resetdb": "npm run dropdb && npm run createdb"
},
"author": "Nathan Fritz",
"license": "MIT",
"dependencies": {
"async": "^1.4.2",
"joi": "^7.1.0",
"lodash": "^3.10.1",
"lodash.assign": "^3.2.0",
"pg-promise": "^2.8.5",
"verymodel": "^3.5.1"
},
"devDependencies": {
"code": "^2.1.0",
"eslint": "^1.10.3",
"getconfig": "^2.1.0",
"knex": "^0.9.0",
"lab": "^8.0.1",
"sql-template-strings": "^1.1.0"
}
}