forked from FrankV01/pg-migration
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1004 Bytes
/
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
{
"name": "pg-migration-promise",
"version": "1.0.0",
"description": "pg database migration tool built with a promise interface",
"main": "lib/index.js",
"scripts": {
"test": "mocha",
"doc": "./node_modules/.bin/jsdoc -c ./jsdoc/jsDoc.json ./jsdoc/README.md"
},
"keywords": [
"pg",
"database",
"migration",
"postgres",
"promise"
],
"author": {
"name": "Frank Villasenor",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/FrankV01/pg-migration.git"
},
"bugs": {
"url": "https://github.com/FrankV01/pg-migration/issues",
"email": "[email protected]"
},
"license": "MIT",
"dependencies": {
"bluebird": "^3.4.7",
"debug": "^2.6.1",
"isobject": "^3.0.0",
"lodash": "^4.17.4",
"pg-promise": "^5.5.6",
"url": "^0.11.0"
},
"devDependencies": {
"chai": "^3.5.0",
"jsdoc": "^3.4.3",
"mocha": "^3.2.0",
"sinon": "^1.17.7"
}
}