forked from balmasi/migrate-mongoose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.16 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
{
"name": "@eventonehq/migrate-mongoose",
"version": "5.0.0",
"description": "A mongoose based migration framework for node",
"main": "./src/lib.js",
"type": "module",
"scripts": {
"prepublish": "scripts/prepublish.sh",
"release": "np --no-tests",
"lint": "eslint .",
"docs": "jsdoc -c jsdoc.json",
"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/eventOneHQ/migrate-mongoose-esm.git"
},
"dependencies": {
"colors": "^1.1.2",
"dotenv": "^16.0.3",
"inquirer": "^9.1.4",
"mkdirp": "^2.1.3",
"mongoose": "^6.9.2",
"yargs": "^17.7.0"
},
"devDependencies": {
"clean-jsdoc-theme": "^4.2.6",
"eslint": "^8.34.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"jsdoc": "^4.0.1",
"np": "^7.0.0"
}
}