-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
68 lines (68 loc) · 1.53 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "db-migrate-mysql",
"version": "3.0.0",
"description": "db-migrate mysql driver",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"pretest": "eslint .",
"test": "lab -t 60",
"lintfix": "lint-staged",
"prepare": "husky install"
},
"husky": {
"hooks": {
"pre-commit": "npm run lintfix"
}
},
"lint-staged": {
"*.js": [
"pretty-quick --staged",
"git update-index",
"eslint --fix"
]
},
"repository": {
"type": "git",
"url": "https://github.com/db-migrate/mysql.git"
},
"keywords": [
"db-migrate",
"db",
"database",
"migrate",
"migration",
"database",
"driver"
],
"author": "Tobias Gurtzick <magic@wizardtales.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/db-migrate/mysql/issues"
},
"homepage": "https://github.com/db-migrate/mysql",
"dependencies": {
"bluebird": "^3.7.2",
"db-migrate-base": "^2.3.0",
"moment": "^2.28.0",
"mysql2": "^3.9.7"
},
"devDependencies": {
"@hapi/code": "^7.0.0",
"@hapi/lab": "^25.1.3",
"db-meta": "^0.4.1",
"db-migrate-shared": "^1.1.2",
"eslint": "^7.1.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"mysql": "^2.18.1",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0"
}
}