forked from justinlettau/sql-source-control
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.65 KB
/
package.json
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
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "sql-source-control",
"version": "1.7.0",
"description": "Simple CLI for getting SQL into source control systems.",
"keywords": [
"sql",
"sql-server",
"source-control",
"git",
"svn",
"mercurial"
],
"author": {
"name": "Justin Lettau",
"email": "[email protected]",
"url": "http://justinlettau.com"
},
"license": "MIT",
"homepage": "https://github.com/justinlettau/sql-source-control",
"repository": {
"type": "git",
"url": "https://github.com/justinlettau/sql-source-control"
},
"bugs": {
"url": "https://github.com/justinlettau/sql-source-control/issues"
},
"preferGlobal": true,
"scripts": {
"lint": "tslint -c ./tslint.json -p ./tsconfig.json",
"build": "tsc -p ./tsconfig.json",
"release": "standard-version"
},
"bin": {
"ssc": "bin/ssc"
},
"files": [
"bin/",
"dist"
],
"dependencies": {
"chalk": "^2.3.0",
"cli-table": "^0.3.1",
"commander": "^2.12.2",
"deepmerge": "^2.0.1",
"fs-extra": "^4.0.3",
"glob": "^7.1.2",
"inquirer": "^3.3.0",
"mssql": "^4.1.0",
"multimatch": "^2.1.0",
"tedious": "^2.2.3",
"ts-util-is": "^1.1.3",
"update-notifier": "^2.3.0",
"xml2js": "^0.4.19"
},
"devDependencies": {
"@types/commander": "^2.12.2",
"@types/deepmerge": "^1.3.3",
"@types/fs-extra": "^4.0.7",
"@types/glob": "^5.0.34",
"@types/inquirer": "^0.0.35",
"@types/mssql": "^4.0.6",
"@types/multimatch": "^2.1.2",
"@types/xml2js": "^0.4.2",
"standard-version": "^4.3.0",
"tslint": "^5.9.1",
"tslint-config-unicorn-science": "^1.1.7",
"typescript": "^2.6.2"
}
}