forked from tmont/node-sql-generate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·33 lines (33 loc) · 760 Bytes
/
package.json
File metadata and controls
executable file
·33 lines (33 loc) · 760 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
{
"name": "sql-generate",
"version": "0.3.0",
"preferGlobal": true,
"description": "Automatic generation of SQL definitions for use by the sql module",
"keywords": [
"sql",
"generate"
],
"author": "Tommy Montgomery <tmont@tmont.com> (http://tmont.com/)",
"repository": {
"type": "git",
"url": "https://github.com/tmont/node-sql-generate.git"
},
"bin": {
"node-sql-generate": "bin/node-sql-generate.js"
},
"dependencies": {
"async": "0.2.10",
"colors": "0.6.2",
"commander": "2.1.0",
"lodash": "^3.10.1",
"mysql": "2.15.0",
"sql": "0.35.0"
},
"devDependencies": {
"mocha": "1.17.1",
"should": "3.1.2"
},
"scripts": {
"test": "./node_modules/.bin/mocha -R spec tests"
}
}