-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.38 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
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "postgres-to-mongo",
"version": "2.1.0",
"description": "A framework for converting Postgres Databases to Mongo.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"test": "gulp test",
"build": "gulp build",
"watch": "gulp watch",
"prepare": "gulp build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/taicho/postgres-to-mongo.git"
},
"keywords": [
"postgres",
"mongo",
"mongodb",
"conversion",
"database"
],
"author": "Azad Ratzki",
"license": "MIT",
"bugs": {
"url": "https://github.com/taicho/postgres-to-mongo/issues"
},
"homepage": "https://github.com/taicho/postgres-to-mongo#readme",
"devDependencies": {
"@types/chai": "^4.0.4",
"@types/debug": "0.0.30",
"@types/deepmerge": "^1.3.3",
"@types/mocha": "^2.2.44",
"@types/mongoose": "^4.7.25",
"@types/pg": "^7.1.5",
"@types/underscore": "^1.8.4",
"chai": "^4.1.2",
"del": "^3.0.0",
"gulp": "github:gulpjs/gulp#v4.0.0",
"gulp-mocha": "^4.3.1",
"gulp-tslint": "^8.1.2",
"mocha": "^4.0.1",
"ts-node": "^3.3.0",
"tslint": "^5.8.0",
"typescript": "^2.6.1"
},
"dependencies": {
"debug": "^3.1.0",
"deepmerge": "^2.0.1",
"moment": "^2.19.1",
"mongoose": "^4.13.1",
"pg": "^7.4.0",
"pg-cursor": "^1.3.0",
"underscore": "^1.8.3"
}
}