-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
75 lines (75 loc) · 1.82 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": "knex-types",
"version": "0.5.0",
"description": "Generates TypeScript definitions (types) from a (PostgreSQL) database schema.",
"keywords": [
"database",
"db",
"definitions",
"generate",
"generator",
"postgres",
"postgresql",
"scaffold",
"scaffolding",
"schema",
"template",
"types",
"typescript"
],
"license": "MIT",
"author": {
"name": "Kriasoft",
"email": "[email protected]",
"url": "https://kriasoft.com"
},
"repository": "kriasoft/knex-types",
"contributors": [
"Konstantin Tarkus <[email protected]> (https://tarkus.me/)"
],
"funding": {
"type": "patreon",
"url": "https://patreon.com/koistya"
},
"main": "main.js",
"types": "main.d.ts",
"scripts": {
"lint": "eslint --report-unused-disable-directives .",
"test": "jest",
"build": "babel --env-name production -x \".ts\" --out-dir . \"*.ts\" && tsc && rm *.test.d.ts && prettier --write ."
},
"packageManager": "[email protected]",
"dependencies": {
"lodash": "^4.17.21",
"pg": "^8.8.0"
},
"peerDependencies": {
"knex": ">=0.95"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.20.5",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^29.2.3",
"@types/lodash": "^4.14.191",
"@types/node": "^18.11.10",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"babel-plugin-import": "^1.13.5",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"jest": "^29.3.1",
"knex": "^2.3.0",
"prettier": "^2.8.0",
"typescript": "^4.9.3"
},
"jest": {
"testEnvironment": "node",
"moduleFileExtensions": [
"ts",
"js"
]
}
}