-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 1.89 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
{
"name": "@gatewayapps/drift",
"version": "1.2.0",
"description": "Tooling for creating and migrating relational databases",
"main": "dist/index.js",
"bin": {
"drift": "./dist/cli/drift.js"
},
"scripts": {
"build": "cross-env NODE_ENV=production tsc",
"clean": "rm -Rf ./dist",
"docs": "typedoc ./src/lib",
"lint": "tslint --project .",
"prepublishOnly": "npm run clean && npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gatewayapps/drift.git"
},
"author": "Gateway Apps, LLC",
"contributors": [
"Justin Neff <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/gatewayapps/drift/issues"
},
"homepage": "https://github.com/gatewayapps/drift#readme",
"publishConfig": {
"access": "public",
"registry": "https://npm.pkg.github.com"
},
"devDependencies": {
"@types/archiver": "^2.1.3",
"@types/bluebird": "^3.5.26",
"@types/colors": "^1.2.1",
"@types/fs-extra": "^5.0.5",
"@types/handlebars": "^4.1.0",
"@types/js-yaml": "^3.12.0",
"@types/node": "^11.10.5",
"@types/progress": "^2.0.3",
"@types/validator": "^10.9.0",
"@types/yargs": "^12.0.9",
"cross-env": "^5.2.0",
"prettier": "^1.16.4",
"prettier-tslint": "^0.4.2",
"tslint": "^5.13.1",
"typedoc": "^0.14.2",
"typescript": "^3.3.3333"
},
"dependencies": {
"archiver": "^3.0.0",
"colors": "^1.3.3",
"date-fns": "^1.30.1",
"folder-hash": "^2.1.2",
"fs-extra": "^7.0.1",
"handlebars": "^4.1.0",
"js-yaml": "^3.13.0",
"progress": "^2.0.3",
"reflect-metadata": "^0.1.13",
"sequelize": "^5.1.0",
"sequelize-typescript": "^1.0.0-alpha.9",
"upath": "^1.1.2",
"yargs": "^13.2.2"
},
"optionalDependencies": {
"pg": "^7.9.0",
"tedious": "^6.1.0"
}
}