forked from SweetIQ/schemats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 2.55 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@typed-code/schemats",
"version": "5.0.1",
"description": "Generate typescript interface definitions from (Postgres or MySql) SQL database schema",
"keywords": [
"postgres",
"mysql",
"schema",
"typescript",
"sql"
],
"homepage": "https://github.com/typed-code/schemats#readme",
"bugs": {
"url": "https://github.com/typed-code/schemats/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/typed-code/schemats.git"
},
"license": "MIT",
"author": "Mengxuan Xia <[email protected]>",
"contributors": [
"Arnaud Benhamdine <[email protected]>",
"zigomir <[email protected]>",
"Mark Crisp <[email protected]>"
],
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"bin": {
"schemats": "dist/bin/schemats.js"
},
"files": [
"dist/src/**/*",
"dist/bin/**/*"
],
"engines": {
"node": "<16"
},
"scripts": {
"build": "tsc",
"clean": "del-cli node_modules **/*.js",
"lint": "eslint . --ext ts --fix",
"prepublish": "npm run build",
"release": "release-it --only-version",
"pretest": "npm run lint && npm run build",
"test": "jest",
"version": "auto-changelog -p && git add CHANGELOG.md"
},
"jest": {
"testEnvironment": "node",
"testMatch": [
"**/__tests__/**/*.test.[j|t]s?(x)"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/"
],
"transform": {
"^.+\\.ts$": "ts-jest"
}
},
"dependencies": {
"lodash": "^4.17.21",
"mysql": "^2.18.1",
"pg-promise": "^11.5.4",
"pkg-up": "^3.1.0",
"prettier": "^2.8.8",
"typescript": "^5.2.2",
"yargs": "^17.6.2"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.3",
"@types/jest": "^29.2.5",
"@types/lodash": "^4.14.191",
"@types/mysql": "2.15.21",
"@types/mz": "^2.7.4",
"@types/node": "^11.15.54",
"@types/prettier": "^2.7.2",
"@types/yargs": "^17.0.19",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"auto-changelog": "^2.4.0",
"del-cli": "^5.0.0",
"eslint": "^8.51.0",
"jest": "^29.3.1",
"mz": "^2.7.0",
"release-it": "^16.2.1",
"ts-jest": "^29.1.1"
},
"release-it": {
"git": {
"changelog": "npx auto-changelog --stdout --commit-limit false -u --template https://raw.githubusercontent.com/release-it/release-it/master/templates/changelog-compact.hbs"
},
"hooks": {
"after:bump": "npx auto-changelog -p"
},
"github": {
"release": true
}
}
}