-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1002 Bytes
/
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
{
"name": "dbmodel",
"version": "0.1.3",
"description": "Deploy, load or build script from model of SQL database",
"main": "lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dbshell/dbmodel.git"
},
"bin": {
"dbmodel": "./bin/dbmodel.js"
},
"keywords": [
"sql",
"model",
"deploy",
"mssql"
],
"author": "Jan Prochazka",
"license": "MIT",
"bugs": {
"url": "https://github.com/dbshell/dbmodel/issues"
},
"homepage": "https://github.com/dbshell/dbmodel#readme",
"devDependencies": {
"eslint": "^6.7.0"
},
"files": [
"LICENSE",
"README.md",
"bin",
"lib"
],
"dependencies": {
"commander": "^4.0.1",
"fs-readdir-recursive": "^1.1.0",
"js-yaml": "^3.13.1",
"json-normalize": "^1.1.2",
"mssql": "^6.0.1",
"source-map-support": "^0.5.16",
"toposort": "^2.0.2"
}
}