-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
56 lines (56 loc) · 1.19 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
{
"name": "schemalint",
"version": "2.0.4",
"keywords": [
"postgresql",
"schema",
"lint"
],
"repository": {
"type": "git",
"url": "[email protected]:kristiandupont/schemalint.git"
},
"homepage": "https://github.com/kristiandupont/schemalint",
"license": "MIT",
"author": {
"name": "Kristian Dupont",
"url": "http://www.kristiandupont.com"
},
"main": "build/index.js",
"types": "build/index.d.ts",
"bin": {
"schemalint": "./bin/schemalint"
},
"files": [
"build/",
"bin/"
],
"scripts": {
"build": "tsc",
"lint": "eslint . -f visualstudio --report-unused-disable-directives --ext .js,.ts",
"test": "vitest run",
"version": "npm run build"
},
"dependencies": {
"@kristiandupont/recase": "^1.2.1",
"chalk": "4.1.2",
"extract-pg-schema": "^5.0.0",
"irregular-plurals": "^3.2.0",
"optionator": "^0.9.1",
"pg": "^8.3.3",
"ramda": "^0.30.0"
},
"devDependencies": {
"@kristiandupont/dev-deps": "^2.20.0",
"@types/pg": "^8.11.0",
"@types/ramda": "0.30.2",
"np": "10.0.7",
"testcontainers": "10.14.0"
},
"np": {
"tests": false
},
"engines": {
"node": ">=16.0.0"
}
}