This commit is contained in:
Andrew Chilton 2014-08-14 15:45:04 +12:00
Коммит ba55abae24
4 изменённых файлов: 36 добавлений и 0 удалений

3
.gitignore поставляемый Normal file
Просмотреть файл

@ -0,0 +1,3 @@
node_modules/
*.log
*~

5
README.md Normal file
Просмотреть файл

@ -0,0 +1,5 @@
# mysql-patcher #
A package/program to help patch MySql databases.
(Ends)

0
index.js Normal file
Просмотреть файл

28
package.json Normal file
Просмотреть файл

@ -0,0 +1,28 @@
{
"name": "mysql-patcher",
"version": "0.1.0",
"description": "A package/program to help patch MySql databases",
"main": "index.js",
"bin": {
"mysql-patcher": "./bin/mysql-patcher"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/chilts/mysql-patcher.git"
},
"keywords": [
"mysql"
],
"author": "Andrew Chilton",
"license": "MPL2",
"bugs": {
"url": "https://github.com/chilts/mysql-patcher/issues"
},
"homepage": "https://github.com/chilts/mysql-patcher",
"dependencies": {
"tape": "^2.14.0"
}
}