-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
77 lines (77 loc) · 1.56 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
{
"name": "pg-differ",
"version": "3.5.1",
"description": "Node.js migration tool for PostgreSQL",
"keywords": [
"node",
"pg",
"database",
"postgres",
"postgresql",
"migration"
],
"homepage": "https://multum.github.io/pg-differ",
"bugs": "https://github.com/multum/pg-differ/issues",
"repository": {
"type": "git",
"url": "https://github.com/multum/pg-differ.git"
},
"license": "MIT",
"author": {
"name": "Andrew Vereshchak",
"email": "andrew.vereshchak@gmail.com"
},
"main": "lib/index.js",
"types": "types/index.d.ts",
"bin": {
"pg-differ": "./bin/cli.js"
},
"files": [
"bin",
"lib",
"types"
],
"scripts": {
"docs": "docsify serve docs",
"format": "prettier --write .",
"lint": "eslint --max-warnings 0 .",
"test": "jest --run-in-band"
},
"husky": {
"hooks": {
"pre-commit": "yarn test && lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint",
"git add"
],
"*.{ts,md,html,css}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"ajv": "6.12.5",
"chalk": "^4.1.0",
"metalize": "0.1.4",
"pg": "^8.4.1",
"yargs": "^16.1.0"
},
"devDependencies": {
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"jest": "^26.5.3",
"lint-staged": "^10.4.0",
"prettier": "^2.1.2",
"uuid": "^8.3.1"
},
"engines": {
"node": ">=10.4.0"
}
}