-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1000 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": "easy-migrate",
"version": "1.1.6",
"description": "an easy migration framework for node, generate up migration and down migration content automatically",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"migrate": "./bin/migrate.js",
"migrate-up": "./bin/migrate-up.js",
"migrate-down": "./bin/migrate-down.js",
"migrate-config": "./bin/migrate-config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zhangmingfeng/easy-migrate.git"
},
"keywords": [
"easy-migrate",
"migration",
"automatically"
],
"author": "zhangmingfeng",
"license": "MIT",
"bugs": {
"url": "https://github.com/zhangmingfeng/easy-migrate/issues"
},
"dependencies": {
"commander": "^2.20.0",
"ejs": "^2.6.1",
"fs-extra": "^7.0.1",
"lodash": "^4.17.11",
"mysql2": "^1.6.5",
"sequelize": "^5.7.4"
},
"homepage": "https://github.com/zhangmingfeng/easy-migrate#readme"
}