-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.06 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.06 KB
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": "mongo-migrant",
"version": "0.1.3",
"description": "perform mongoDb migrations easily",
"main": "index.js",
"directories": {
"lib": "lib"
},
"scripts": {
"test": "nyc mocha --forbid-only \"test/**/*.test.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/jesseokeya/migrant.git"
},
"keywords": [
"nodejs",
"mongo",
"mlab",
"mongoose",
"oclif"
],
"author": "Jesse Okeya",
"license": "MIT",
"bugs": {
"url": "https://github.com/jesseokeya/migrant/issues"
},
"bin": {
"mongo-migrant": "command/bin/run"
},
"oclif": {
"bin": "mongo-migrant"
},
"homepage": "https://github.com/jesseokeya/migrant#readme",
"dependencies": {
"@oclif/command": "^1.5.12",
"@oclif/config": "^1.12.11",
"@oclif/plugin-help": "^2.1.6",
"colors": "^1.3.3",
"mongodb": "^3.2.7"
},
"devDependencies": {
"@oclif/test": "^1.2.4",
"chai": "^4.2.0",
"jest": "^24.8.0",
"mocha": "^5.2.0",
"nyc": "^13.3.0"
},
"engines": {
"node": ">=8.0.0"
}
}