-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
36 lines (36 loc) · 957 Bytes
/
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
{
"name": "momy",
"version": "0.8.2",
"description": "MongoDB to MySQL replication",
"type": "module",
"exports": "./index.js",
"bin": {
"momy": "bin/momy.js"
},
"files": [
"bin",
"lib",
"index.js"
],
"scripts": {
"test": "npm run standard && npm run mocha",
"mocha": "env TZ='Asia/Tokyo' mocha -t 20000 test/specs/*.js",
"mocha-inspect": "env TZ='Asia/Tokyo' mocha -t 20000 --inspect-brk=0.0.0 test/specs/*.js",
"standard": "standard bin/*.js lib/*.js test/**/*.js",
"unit-test": "env TZ='Asia/Tokyo' mocha -t 20000 test/specs/types.js",
"try": "node ./bin/momy.js --config test/momyfile.json"
},
"dependencies": {
"change-case": "^5.4.4",
"moment": "^2.30.1",
"mongodb": "^6.5.0",
"mysql": "^2.18.1",
"sqlstring": "^2.3.3"
},
"repository": {
"type": "git",
"url": "git://github.com/cognitom/momy.git"
},
"author": "Tsutomu Kawamura",
"license": "MIT"
}