-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.39 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.39 KB
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
{
"name": "gummy",
"version": "0.0.1",
"description": "Decorator-first data entity manager with schema generation",
"type": "module",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"bin": {
"gummy": "dist/src/cli.js"
},
"files": [
"dist"
],
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.json",
"generate-schemas": "npm run build && node dist/src/cli.js generate-schemas",
"test:unit": "npm run build && node --test dist/test/cli-generate-schemas.test.js dist/test/query-builders.test.js dist/test/repository-mssql-methods.test.js dist/test/repository-postgres-methods.test.js dist/test/repository-sqlite-methods.test.js dist/test/repository-validation.test.js",
"test": "npm run build && node --test dist/test/*.test.js",
"test:integration:pg": "npm run build && node --test dist/test/integration-postgres.test.js",
"test:integration:mssql": "npm run build && node --test dist/test/integration-mssql.test.js",
"test:integration:sqlite": "npm run build && node --test dist/test/integration-sqlite.test.js"
},
"dependencies": {
"mssql": "^11.0.1",
"pg": "^8.18.0",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7"
},
"devDependencies": {
"@types/mssql": "^9.1.8",
"@types/node": "^22.10.2",
"@types/pg": "^8.16.0",
"@types/sqlite3": "^3.1.11",
"testcontainers": "^11.11.0",
"typescript": "^5.7.3"
}
}