-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 932 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 932 Bytes
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
{
"name": "mongo-migrations-ts",
"version": "1.0.2",
"description": "A simple migration system for MongoDB supporting string version migrations and command line usage.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -p .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"mongodb",
"mongo",
"migration"
],
"author": "Utsav Patel",
"license": "MIT",
"homepage": "https://github.com/patelutsav/mongo-migrations-ts",
"repository": {
"type": "git",
"url": "https://github.com/patelutsav/mongo-migrations-ts.git"
},
"bugs": {
"url": "https://github.com/patelutsav/mongo-migrations-ts/issues"
},
"devDependencies": {
"typescript": "^3.8.3"
},
"dependencies": {
"@types/lodash": "^4.14.149",
"@types/md5": "^2.1.33",
"@types/mongodb": "^3.5.5",
"lodash": "^4.17.15",
"md5": "^2.2.1"
}
}