forked from cognitom/momy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 916 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
37
{
"name": "momy",
"version": "0.7.0",
"description": "MongoDB to MySQL replication",
"main": "index.js",
"bin": {
"momy": "./bin/momy.js"
},
"files": [
"bin",
"lib",
"index.js"
],
"scripts": {
"test": "npm run standard && npm run coverage",
"coverage": "env TZ='Asia/Tokyo' istanbul cover _mocha -- -R spec -t 20000 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": "^3.0.0",
"moment": "^2.15.2",
"mongodb": "^2.2.11",
"mysql": "^2.12.0",
"sqlstring": "^2.2.0"
},
"devDependencies": {
"co": "^4.6.0"
},
"repository": {
"type": "git",
"url": "git://github.com/cognitom/momy"
},
"author": "Tsutomu Kawamura",
"license": "MIT"
}