forked from rmp135/sql-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.3 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
{
"name": "@rmp135/sql-ts",
"version": "1.8.2",
"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"
},
"scripts": {
"build": "tsc",
"prebuild": "copyfiles -f ./src/template.handlebars ./dist/",
"pretest": "tsc -p tsconfig.test.json",
"test": "jasmine ./__test/{**,}/*.spec.js"
},
"peerDependencies": {
"mssql": "^6.3.1",
"mysql": "^2.18.1",
"mysql2": "^2.2.5",
"pg": "^8.5.1",
"sqlite3": "5.0.0"
},
"peerDependenciesMeta": {
"mssql": {
"optional": true
},
"mysql": {
"optional": true
},
"mysql2": {
"optional": true
},
"pg": {
"optional": true
},
"sqlite3": {
"optional": true
}
},
"dependencies": {
"handlebars": "^4.7.6",
"knex": "^0.21.17",
"yargs": "^16.2.0"
},
"devDependencies": {
"@types/handlebars": "^4.0.40",
"@types/jasmine": "^3.6.3",
"@types/knex": "^0.16.1",
"@types/node": "^14.14.22",
"@types/rewire": "^2.5.28",
"@types/yargs": "^16.0.0",
"copyfiles": "^2.4.1",
"jasmine": "^3.6.4",
"rewire": "^5.0.0",
"typescript": "^4.1.3"
}
}