-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.58 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.58 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
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
82
83
84
85
86
87
88
{
"name": "@cakki/orm",
"version": "1.0.0",
"description": "A blazing-fast, type-safe MySQL ORM for TypeScript - batteries included",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"clean": "rm -rf dist",
"prebuild": "npm run clean",
"test": "jest --runInBand",
"test:unit": "jest tests/unit --runInBand",
"test:advanced": "jest tests/advanced --runInBand",
"test:utils": "jest tests/utils --runInBand",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage --runInBand",
"test:verbose": "jest --verbose --runInBand",
"test:performance": "ts-node -r tsconfig-paths/register tests/performance/performance-suite.ts",
"test:performance:quick": "ts-node -r tsconfig-paths/register tests/performance/performance-suite.ts --quick",
"lint": "eslint src/**/*.ts tests/**/*.ts",
"lint:fix": "eslint src/**/*.ts tests/**/*.ts --fix",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\"",
"prepublishOnly": "npm run build && npm test",
"prepare": "npm run build",
"preversion": "npm test",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"keywords": [
"mysql",
"orm",
"typescript",
"database",
"sql",
"query-builder",
"active-record",
"repository",
"type-safe",
"performance",
"haki",
"mysql2",
"batteries-included"
],
"author": "Your Name <your.email@example.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/yourusername/haki-orm-mysql.git"
},
"bugs": {
"url": "https://github.com/yourusername/haki-orm-mysql/issues"
},
"homepage": "https://github.com/yourusername/haki-orm-mysql#readme",
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
},
"dependencies": {
"mysql2": "^3.9.1"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.0",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"prettier": "^3.2.4",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.3.3"
},
"directories": {
"example": "examples",
"test": "tests"
}
}