forked from rmp135/sql-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.48 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
{
"name": "@rmp135/sql-ts",
"version": "1.13.0",
"main": "./dist/index.js",
"license": "MIT",
"description": "Generate TypeScript definitions from database schemas.",
"bin": "./bin/sql-ts",
"types": "dist/index.d.ts",
"repository": "rmp135/sql-ts",
"author": {
"name": "Ryan Poole"
},
"files": [
"/dist"
],
"scripts": {
"build": "tsc",
"prebuild": "copyfiles -f ./src/template.handlebars ./dist/",
"pretest": "tsc -p tsconfig.test.json",
"test": "jasmine ./__test/{**,}/*.spec.js",
"docs:serve": "docsify serve docs"
},
"peerDependencies": {
"better-sqlite3": "^7.5.0",
"mssql": "^8.0.2",
"mysql": "^2.18.1",
"mysql2": "^2.3.3",
"pg": "^8.7.3",
"sqlite3": "^5.0.2"
},
"peerDependenciesMeta": {
"mssql": {
"optional": true
},
"mysql": {
"optional": true
},
"mysql2": {
"optional": true
},
"pg": {
"optional": true
},
"sqlite3": {
"optional": true
},
"better-sqlite3": {
"optional": true
}
},
"dependencies": {
"change-case": "^4.1.2",
"handlebars": "^4.7.7",
"knex": "^1.0.3",
"yargs": "^17.3.1"
},
"devDependencies": {
"@types/jasmine": "^3.10.3",
"@types/lodash": "^4.14.179",
"@types/node": "^17.0.21",
"@types/rewire": "^2.5.28",
"@types/yargs": "^17.0.9",
"copyfiles": "^2.4.1",
"docsify-cli": "^4.4.4",
"jasmine": "^4.0.2",
"rewire": "^6.0.0",
"typescript": "^4.6.2"
}
}