-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
49 lines (49 loc) · 1.06 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
{
"name": "sequelize-db-export-import",
"version": "0.1.13",
"description": "Generater models from mysql db or import tables from models files",
"main": "index",
"bin": {
"seq-ei": "./bin/seq-ei"
},
"scripts": {
"test": "make test",
"test-cov": "make test-cov"
},
"keywords": [
"node",
"sequelize",
"mysql",
"link",
"models",
"orm",
"coffee"
],
"repository": {
"type": "git",
"url": "https://github.com/boiawang/sequelize-db-export-import"
},
"bugs": {
"url": "https://github.com/boiawang/sequelize-db-export-import/issues"
},
"author": "Boia Wang <[email protected]>",
"license": "MIT",
"dependencies": {
"coffee-script": "^1.8.0",
"colors": "^1.1.2",
"commander": "^2.6.0",
"del": "^1.1.1",
"fileset": "^2.0.3",
"lodash": "^4.17.10",
"progress": "^1.1.8",
"q": "^1.1.2",
"sequelize": "2.0.5",
"to-camel-case": "^1.0.0"
},
"devDependencies": {
"ibrik": "^2.0.0",
"mocha": "^2.1.0",
"mysql": "^2.5.4",
"sqlite3": "^3.1.13"
}
}