forked from justinlettau/sql-source-control
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.01 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
70
71
72
73
74
75
76
77
78
79
80
{
"name": "sql-source-control",
"version": "2.0.2",
"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",
"prepublishOnly": "npm run build",
"release": "standard-version",
"test": "nyc jasmine JASMINE_CONFIG_PATH=jasmine.json",
"posttest": "nyc report --reporter=json && codecov -f coverage/*.json"
},
"bin": {
"ssc": "bin/ssc"
},
"files": [
"bin/",
"dist"
],
"dependencies": {
"chalk": "^2.4.1",
"checksum": "^0.1.1",
"cli-table": "^0.3.1",
"commander": "^2.18.0",
"filenamify": "^2.1.0",
"fs-extra": "^7.0.0",
"glob": "^7.1.3",
"inquirer": "^6.2.0",
"mssql": "^4.2.1",
"multimatch": "^2.1.0",
"ora": "^3.0.0",
"tedious": "^3.0.0",
"ts-util-is": "^1.1.3",
"update-notifier": "^2.5.0",
"xml2js": "^0.4.19"
},
"devDependencies": {
"@types/deepmerge": "^2.1.0",
"@types/fs-extra": "^5.0.4",
"@types/glob": "^7.0.0",
"@types/inquirer": "^0.0.43",
"@types/jasmine": "^2.8.8",
"@types/mssql": "^4.0.10",
"@types/multimatch": "^2.1.2",
"@types/ora": "^1.3.4",
"@types/xml2js": "^0.4.3",
"codecov": "^3.1.0",
"jasmine": "^3.2.0",
"mock-fs": "^4.7.0",
"nyc": "^13.0.1",
"standard-version": "^4.4.0",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-config-unicorn-science": "^1.3.0",
"typescript": "^3.0.3"
}
}