-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.07 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
{
"name": "wait-for-mysql",
"description": "Wait for a MySQL connection to become available",
"keywords": [
"MySQL",
"Notify",
"Event"
],
"version": "1.0.0",
"author": "Joel Edwards (https://github.com/joeledwards)",
"contributors": [
"Joel Edwards <joeledwards@gmail.com> (https://github.com/joeledwards)"
],
"repository": {
"type": "git",
"url": "https://github.com/joeledwards/node-wait-for-mysql.git"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/joeledwards/node-durations/blob/master/LICENSE"
}
],
"main": "./lib/index",
"directories": {
"lib": "./lib"
},
"bin": {
"wait-for-mysql": "./bin/wait-for-mysql",
"wait4mysql": "./bin/wait-for-mysql"
},
"dependencies": {
"commander": "~2.8",
"durations": "~1",
"mysql": "~2.9",
"q": "~1.4"
},
"devDependencies": {
"coffee-script": "~1.9.3",
"mocha": "~2.3.0"
},
"scripts": {
"prepublish": "cake build",
"build": "cake build",
"test": "cake test"
},
"engines": {
"node": ">=0.10"
}
}