forked from Airfordable/mgdb-migrator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.92 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
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "mgdb-migrator",
"version": "1.8.3",
"description": "Mongodb schema and data migration lib",
"main": "dist/src/index.js",
"typings": "dist/src/index.d.ts",
"scripts": {
"lint": "tslint --project .",
"build": "tsc",
"build:watch": "rm -rf dist && tsc -w",
"docker:start": "npm run build && docker-compose up mgdb-migrator-dev || true",
"docker:test": "npm run build && docker-compose up mgdb-migrator-test || true",
"docker:down": "docker-compose down",
"prestart": "npm run build:watch & sleep 12s",
"prepare": "npm run build",
"start": "npm run test",
"test": "jest dist/* --coverage --useStderr --forceExit",
"test:debug": "node --inspect=0.0.0.0:5857 node_modules/.bin/jest dist/* --coverage --useStderr --forceExit",
"test:watch": "jest dist/* --watchAll --useStderr --coverage",
"test:debug:watch": "node --inspect=0.0.0.0:5857 node_modules/.bin/jest dist/* --coverage --useStderr"
},
"author": "Emmanuel Buah <emmanuelbuah@gmail.com> (https://twitter.com/emmanuelbuah)",
"repository": {
"type": "git",
"url": "https://github.com/emmanuelbuah/mgdb-migrator"
},
"bugs": {
"url": "https://github.com/emmanuelbuah/mgdb-migrator/issues"
},
"keywords": [
"mongo",
"mongodb",
"migration"
],
"license": "ISC",
"engines": {
"node": ">=7.10.0"
},
"devDependencies": {
"@types/jest": "24.9.0",
"@types/lodash": "4.14.149",
"@types/mongodb": "3.3.14",
"@types/node": "10.17.13",
"jest": "24.9.0",
"tslint": "5.20.1",
"tslint-eslint-rules": "5.4.0",
"tslint-microsoft-contrib": "6.2.0",
"typescript": "3.7.5",
"vrsource-tslint-rules": "6.0.0"
},
"dependencies": {
"@types/bluebird": "3.5.29",
"lodash": "4.17.15",
"mongodb": "3.5.1",
"type-check": "0.3.2"
},
"jest": {
"testEnvironment": "node",
"testRegex": "dist/test/*.+(spec|int|unit)\\.js$",
"verbose": true
}
}