-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 837 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 837 Bytes
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
{
"name": "milkshake",
"version": "0.2.1",
"description": "Extendable database agnostic migration command line tool and mini-framework for node.js. Inspired by the Rails migrate tool and node-migrate.",
"bin": {
"milkshake": "./bin/milkshake"
},
"main": "index.js",
"scripts": {
"test": "mocha"
},
"author": "Arnor Heidar Sigurdsson <arnorhs@gmail.com>",
"license": "MIT",
"dependencies": {
"optimist": "~0.6.0",
"xtend": "~2.1.1",
"spurt": "0.0.1"
},
"devDependencies": {
"mocha": "~1.14.0"
},
"keywords": [
"migrate",
"database",
"db",
"migration"
],
"repository": {
"type": "git",
"url": "git://github.com/arnorhs/milkshake.git"
},
"bugs": {
"url": "https://github.com/arnorhs/milkshake/issues"
},
"directories": {
"test": "test"
}
}