-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.1 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
{
"name": "tspace-mysql",
"version": "1.8.1",
"description": "Tspace MySQL is a promise-based ORM for Node.js, designed with modern TypeScript and providing type safety for schema databases.",
"main": "build/lib/index.js",
"types": "build/lib/index.d.ts",
"files": [
"build"
],
"type": "commonjs",
"bin": {
"tspace-mysql": "./build/cli/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/thanathip41/tspace-mysql.git"
},
"keywords": [
"tspace",
"tspace-mysql",
"mysql",
"mysql2",
"orm",
"ORM",
"relations",
"deeply nested relations",
"object relation model",
"model",
"database",
"query builder",
"transaction",
"commit",
"rollback",
"cli",
"migrate",
"backup",
"blueprint",
"repository",
"type safety",
"typescript"
],
"author": "Thanathip (https://github.com/thanathip41)",
"license": "MIT",
"bugs": {
"url": "https://github.com/thanathip41/tspace-mysql"
},
"homepage": "https://github.com/thanathip41",
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"test": "cross-env NODE_ENV=test ts-mocha './src/tests/**/0*.test.ts' --reporter spec --no-timeouts --recursive --exit",
"test:benchmark": "cross-env NODE_ENV=benchmark ts-node ./src/tests/benchmark.test.ts",
"release:beta": "npm test && npm run build && npm publish --tag beta",
"release": "npm test && npm run build && npm publish"
},
"dependencies": {
"mysql2": "3.12.0",
"pluralize": "8.0.0",
"sql-formatter": "10.7.1"
},
"devDependencies": {
"@types/autocannon": "7.12.5",
"@types/chai": "4.3.11",
"@types/chai-json-schema": "1.4.9",
"@types/debug": "4.1.12",
"@types/mocha": "10.0.6",
"@types/mysql": "2.15.19",
"@types/pluralize": "0.0.29",
"@types/yargs": "17.0.32",
"autocannon": "7.15.0",
"chai": "4.3.10",
"chai-json-schema": "1.5.1",
"cross-env": "7.0.3",
"dotenv": "^16.4.7",
"mocha": "10.2.0",
"mochawesome": "7.1.3",
"redis": "4.6.15",
"ts-mocha": "10.0.0",
"typescript": "5.4.5"
}
}