forked from balmasi/migrate-mongoose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.14 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
{
"name": "migrate-mongoose-typescript",
"version": "3.3.2",
"description": "A mongoose based migration framework for node with Typescript support",
"main": "./src/lib.js",
"scripts": {
"postversion": "git push && git push --tags",
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"migrate": "./src/cli.js"
},
"keywords": [
"migrate",
"migration",
"mongoose",
"schema",
"mongodb",
"typescript",
"ts",
"db",
"nosql"
],
"author": "Santiago Quinteros <[email protected]>",
"contributors": [
{
"name": "Santiago Quinteros",
"email": "[email protected]",
"url": "https://github.com/santiq"
},
{
"name": "ahrnee",
"url": "https://github.com/ahrnee"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/whyline/migrate-mongoose.git"
},
"dependencies": {
"bluebird": "^3.5.1",
"colors": "^1.2.4",
"dotenv": "^5.0.1",
"inquirer": "^0.12.0",
"is-path-global": "^2.0.0",
"mkdirp": "^0.5.1",
"mongoose": "^4.13.12",
"ts-node": "^6.0.3",
"yargs": "^4.8.1"
}
}