-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
98 lines (98 loc) · 2.52 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "bigal",
"version": "13.0.5",
"description": "A fast and lightweight orm for postgres and node.js, written in typescript.",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"keywords": [
"orm",
"postgres",
"postgresql"
],
"author": "Jim Geurts <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bigalorm/bigal/issues"
},
"homepage": "https://github.com/bigalorm/bigal#readme",
"engines": {
"node": ">=18"
},
"dependencies": {
"@types/pg": "^8.11.10",
"lodash": "^4.17.21",
"pg": "^8.13.1",
"postgres-pool": "^9.0.5"
},
"devDependencies": {
"@faker-js/faker": "^9.3.0",
"@types/chai": "^5.0.1",
"@types/lodash": "^4.17.13",
"@types/mocha": "10.0.10",
"@types/node": ">=22",
"chai": "^5.1.2",
"eslint": "^9.17.0",
"eslint-config-decent": "^2.3.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"markdownlint-cli": "^0.43.0",
"mocha": "^11.0.1",
"npm-run-all": "^4.1.5",
"pinst": "^3.0.0",
"prettier": "^3.4.2",
"strict-event-emitter-types": "^2.0.0",
"ts-mockito": "^2.6.1",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"unbuild": "^3.0.1"
},
"scripts": {
"build": "unbuild",
"check:types": "tsc --noEmit --skipLibCheck",
"test": "mocha --loader=ts-node/esm tests/**/*.tests.ts",
"lint:markdown": "prettier --write '*.md' '!(node_modules|dist)/**/*.md' && markdownlint '*.md' '!(node_modules|dist)/**/*.md' --config=.github/linters/.markdown-lint.yml --fix",
"lint:code": "eslint --fix",
"lint": "run-p lint:*",
"lint-staged": "lint-staged",
"beta": "npm publish --tag beta",
"prepublishOnly": "npm run lint && npm run test && npm run build && pinst --disable",
"postpublish": "pinst --enable",
"prepare": "husky"
},
"lint-staged": {
"*.md": [
"prettier --write --cache",
"markdownlint --config=.github/linters/.markdown-lint.yml --fix"
],
"*.js": [
"eslint --fix"
],
"*.cjs": [
"eslint --fix"
],
"*.mjs": [
"eslint --fix"
],
"*.ts": [
"eslint --fix"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/bigalorm/bigal.git"
}
}