-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.85 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
{
"name": "pg-git",
"version": "1.3.5",
"description": "PostgreSQL simple dump/diff tool",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"pg-git": "./bin/pg-git.js"
},
"engineStrict": true,
"engines": {
"node": ">=4.8.0"
},
"scripts": {
"build": "tsc",
"lint": "eslint src/**/*.ts test/**/*.ts",
"lint:fix": "eslint --fix src/**/*.ts test/**/*.ts",
"test": "TS_NODE_FILES=true mocha -r ts-node/register test/**/*.ts"
},
"author": "Maxim Savin <[email protected]>",
"license": "GPL-3.0",
"keywords": [
"pg",
"postgres",
"posgresql",
"psql",
"apgdiff",
"pgit",
"pggit",
"dump",
"diff",
"migration"
],
"dependencies": {
"cli-progress": "^2.1.1",
"dotenv": "^8.2.0",
"extract-zip": "^2.0.0",
"hasbin": "^1.2.3",
"log4js": "^4.4.0",
"targz": "^1.0.1",
"wget-improved": "^3.2.0"
},
"devDependencies": {
"@types/chai": "^4.2.3",
"@types/cli-progress": "^3.7.0",
"@types/dotenv": "^8.2.0",
"@types/eslint": "^6.1.2",
"@types/mocha": "^5.2.7",
"@types/node": "^12.7.11",
"@types/targz": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^2.3.3",
"@typescript-eslint/parser": "^2.3.3",
"chai": "^4.2.0",
"dockerode": "^3.2.0",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^3.0.8",
"lint-staged": "^9.4.1",
"mocha": "^6.2.1",
"nodemon": "^1.19.3",
"prettier": "^1.18.2",
"ts-node": "^8.4.1",
"typescript": "^3.6.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/soulman-is-good/pg-git.git"
},
"bugs": {
"url": "https://github.com/soulman-is-good/pg-git/issues"
},
"homepage": "https://github.com/soulman-is-good/pg-git#readme"
}