-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.19 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.19 KB
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
{
"name": "sql2realm",
"version": "0.0.5",
"keywords": [
"sql",
"mysql",
"realm",
"realmdb",
"realm.io",
"cli",
"convert",
"database"
],
"description": "Command line tool to convert MySql database into Realm object database",
"homepage": "https://github.com/gkoychev/sql2realm",
"author": {
"name": "Georgy Koychev",
"email": "kgm.pochta@gmail.com"
},
"license": "MIT",
"dependencies": {
"chalk": "^2.4.1",
"cli-progress": "^2.1.0",
"figlet": "^1.2.1",
"load-json-file": "^5.1.0",
"mysql": "^2.16.0",
"pretty-error": "^2.1.1",
"promise-mysql": "^3.3.1",
"realm": "^2.20.0",
"signale": "^1.3.0",
"yargs": "^12.0.5"
},
"devDependencies": {
"eslint": "^5.3.0",
"eslint-config-airbnb": "17.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.0",
"jest": "^23.6.0",
"prettier": "^1.15.2",
"release-it": "^8.4.2"
},
"scripts": {
"eslint": "eslint ./",
"test": "jest",
"release": "release-it"
},
"bin": {
"sql2realm": "./cli.js"
}
}