-
Notifications
You must be signed in to change notification settings - Fork 84
/
package.json
41 lines (41 loc) · 876 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
{
"name": "migrate-mongoose",
"version": "4.0.0",
"description": "A mongoose based migration framework for node",
"main": "./src/lib.js",
"scripts": {
"prepublish": "scripts/prepublish.sh",
"release": "np --no-tests",
"test": "echo 'Error: no test specified'"
},
"bin": {
"migrate": "./src/cli.js"
},
"keywords": [
"migrate",
"migration",
"mongoose",
"schema",
"mongodb",
"db",
"nosql"
],
"author": "Borna Almasi <borna@borna-almasi.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/balmasi/migrate-mongoose.git"
},
"dependencies": {
"bluebird": "^3.3.3",
"colors": "^1.1.2",
"dotenv": "^8.0.0",
"inquirer": "^0.12.0",
"mkdirp": "^1.0.4",
"mongoose": "^5.6.3",
"yargs": "^16.1.1"
},
"devDependencies": {
"np": "^7.0.0"
}
}