-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 722 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 722 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
{
"name": "sql-generate",
"version": "1.5.0",
"description": "Automatic generation of SQL definitions for use by the sql module",
"keywords": [
"sql",
"generate"
],
"author": "Tommy Montgomery <tmont@tmont.com> (http://tmont.com/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tmont/node-sql-generate.git"
},
"bin": {
"node-sql-generate": "bin/node-sql-generate.js"
},
"dependencies": {
"commander": "2.9.0",
"async": "2.1.4",
"chalk": "1.1.3",
"sql": "0.73.0"
},
"devDependencies": {
"mocha": "2.4.5",
"mssql": "3.3.0",
"mysql": "2.10.2",
"pg": "4.5.5",
"should": "8.3.2"
},
"scripts": {
"test": "./node_modules/.bin/mocha -R spec tests"
}
}