-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.05 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-migrator",
"version": "1.1.6",
"description": "Migrate SequelizeJS migrations without SequelizeMeta table dependency and depdency management.",
"main": "index.js",
"scripts": {
"test": "make all"
},
"author": "Daniel Durante <me@danieldurante.com>",
"license": "BSD-2-Clause",
"dependencies": {
"sequelize": "~2.0.0-beta.7",
"commander": "~2.1.0",
"mysql": "~2.1.0",
"mariasql": "~0.1.20",
"sqlite3": "~2.2.0",
"pg": "~2.11.1",
"deptree": "~0.1.0"
},
"devDependencies": {
"chai": "~1.9.0",
"mocha": "~1.17.1"
},
"keywords": [
"mysql",
"postgres",
"maria",
"orm",
"nodejs",
"object relational mapper",
"migrate",
"migrator",
"migration",
"schema"
],
"repository": {
"type": "git",
"url": "https://github.com/durango/sequelize-migrator.git"
},
"bugs": {
"url": "https://github.com/durango/sequelize-migrator/issues"
},
"bin": {
"sequelize-migrator": "bin/sequelize-migrator"
},
"engines": {
"node": ">=0.10.0"
}
}