-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.24 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
{
"name": "opensql",
"version": "2.2.2",
"description": "OpenSql is a promise-based Node.js ORM tool for MySql, Postgres and Microsoft Sql Server",
"main": "./dist/index.js",
"scripts": {
"prestart": "tsc --outDir ./dist",
"start": "NODE_NO_WARNINGS=1 node --trace-warnings --watch ./dist/index.js",
"build": "tsc --outDir ./dist",
"test": "jest",
"sql-parser-run": "NODE_NO_WARNINGS=1 node --trace-warnings --watch ./lib/sql-parser/index.js"
},
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/opensql-org/opensql.git"
},
"keywords": [
"orm",
"opensql",
"mysql-orm",
"mysql",
"database",
"mssql",
"postresql",
"sql"
],
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/mssql": "^9.1.5",
"@types/node": "^20.2.5",
"@types/pg": "^8.10.1",
"jest": "^29.5.0",
"mssql": "^10.0.2",
"mysql2": "^3.3.3",
"pg": "^8.11.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1"
},
"author": "Ali Azmoodeh <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/opensql-org/opensql/milestone/1"
},
"homepage": "https://github.com/opensql-org/opensql#readme"
}