This repository has been archived by the owner on Sep 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
100 lines (100 loc) · 2.54 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "sql-source-control",
"version": "3.0.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": "https://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": {
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down",
"docker:reset": "run-s \"docker:down -- -v\" docker:up",
"lint": "eslint . --ext .js,.ts",
"build": "tsc -p ./tsconfig.json",
"prepublishOnly": "npm run build",
"test": "jest",
"e2e:docker": "jest --roots=docker/",
"e2e:appveyor": "jest --roots=appveyor/",
"format": "prettier --write ."
},
"bin": {
"ssc": "bin/ssc"
},
"files": [
"bin/",
"dist"
],
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"chalk": "^4.1.0",
"checksum": "^0.1.1",
"cli-table": "^0.3.4",
"commander": "^6.2.1",
"eol": "^0.9.1",
"filenamify": "^4.2.0",
"fs-extra": "^9.0.1",
"glob": "^7.1.6",
"inquirer": "^7.3.3",
"mssql": "^6.3.0",
"multimatch": "^5.0.0",
"ora": "^5.1.0",
"safe-buffer": "^5.2.1",
"tedious": "^9.2.1",
"ts-util-is": "^1.2.1",
"update-notifier": "^5.0.1",
"xml2js": "^0.6.0"
},
"devDependencies": {
"@types/checksum": "^0.1.31",
"@types/cli-table": "^0.3.0",
"@types/filenamify": "^2.0.2",
"@types/fs-extra": "^9.0.5",
"@types/glob": "^7.1.3",
"@types/inquirer": "^7.3.1",
"@types/jest": "^26.0.19",
"@types/mock-fs": "^4.13.0",
"@types/mssql": "^6.0.7",
"@types/multimatch": "^4.0.0",
"@types/node": "^14.14.14",
"@types/ora": "^3.2.0",
"@types/update-notifier": "^5.0.0",
"@types/xml2js": "^0.4.7",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"husky": "^4.3.6",
"jest": "^26.6.3",
"mock-fs": "^4.13.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
}
}