forked from jdavisclark/mite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.26 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.26 KB
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
{
"name": "mite",
"version": "1.3.1",
"description": "SQL schema migrations so easy you already know how to write them. guaranteed.",
"keywords": [
"sql",
"migration",
"migrations"
],
"homepage": "https://github.com/jdc0589/mite-node",
"bugs": "https://github.com/jdc0589/mite-node/issues",
"license": "MIT",
"author": {
"name": "Davis Clark",
"url": "https://github.com/jdc0589"
},
"contributors": [
{
"name": "Martin Murphy",
"url": "https://github.com/soitgoes"
}
],
"repository": {
"type": "git",
"url": "http://github.com/jdc0589/mide-node.git"
},
"index": "./lib/mite",
"main": "./lib/mite",
"directories": {
"lib": "./lib",
"templates": "./templates",
"tests": "./tests"
},
"dependencies": {
"chalk": "^0.4.0",
"commander": "~2.7.0",
"dependency-graph": "^0.1.0",
"diff": "~1.0.8",
"minimatch": "^0.2.14",
"mssql": "^1.1.0",
"mysql": "~2.0.1",
"q": "~1.0.0",
"tedious": "^1.1.0",
"underscore": ">0.0.0"
},
"devDependencies": {
"jasmine-node": "~1.13.1",
"jasmine-node-promises": "~1.0.0"
},
"preferGlobal": true,
"bin": {
"mite": "./lib/global.js"
},
"scripts": {
"test": "./node_modules/.bin/jasmine-node tests/"
}
}