-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.02 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
{
"name": "mongo-cop",
"version": "1.0.0",
"description": "MongoDB migration utility",
"main": "dist/index.js",
"scripts": {
"test": "./node_modules/.bin/mocha",
"lint": "eslint .",
"validate": "npm-run-all --parallel lint test",
"prebuild": "rimraf dist",
"build": "npm run prebuild && npm run validate && babel --out-dir dist src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Harry-027/mongo-cop.git"
},
"keywords": [
"mongo-cop",
"mongodb",
"migration",
"database",
"node mongodb migration"
],
"files": [
"dist"
],
"author": "Harish Bhawnani <harishmmp@gmail.com>",
"license": "MIT",
"dependencies": {
"async": "2.6.2",
"lodash": "4.17.19",
"mongodb": "3.2.3"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-preset-es2015": "6.24.1",
"chai": "4.2.0",
"eslint": "5.16.0",
"mocha": "6.1.4",
"npm-run-all": "4.1.5",
"rimraf": "2.6.3"
},
"babel": {
"presets": [
"es2015"
]
}
}