forked from balmasi/migrate-mongoose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.03 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
{
"name": "migrate-mongoose",
"version": "3.2.2",
"description": "A mongoose based migration framework for node",
"main": "./dist/lib.js",
"scripts": {
"prepublish": "scripts/prepublish.sh",
"postpublish": "rm -r ./dist",
"postversion": "git push && git push --tags",
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"migrate": "./dist/cli.js"
},
"keywords": [
"migrate",
"migration",
"mongoose",
"schema",
"mongodb"
],
"author": "Borna Almasi <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/balmasi/migrate-mongoose.git"
},
"dependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.20.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-polyfill": "^6.20.0",
"babel-preset-latest": "^6.16.0",
"babel-register": "^6.18.0",
"bluebird": "^3.3.3",
"colors": "^1.1.2",
"inquirer": "^0.12.0",
"mkdirp": "^0.5.1",
"mongoose": "^4.4.6",
"yargs": "^4.8.1"
}
}