-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.21 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
{
"name": "@dayone-labs/tiny-norm",
"version": "0.1.0",
"description": "Small \"Not ORM\" library for PostgreSQL with TypeScript support",
"keywords": [
"postgres",
"pg",
"tinyorm",
"notorm",
"orm",
"database",
"typescript"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/dayone-labs/tiny-norm.git"
},
"author": {
"email": "marek@dayone.pl",
"name": "Marek Piechut",
"url": "https://marekpiechut.github.io"
},
"license": "MIT",
"engines": {
"node": ">= 18"
},
"type": "module",
"scripts": {
"build": "tsc",
"start": "tsc -w",
"clean": "shx rm -rf ./lib",
"typecheck": "tsc --noEmit",
"lint": "biome lint --error-on-warnings src && biome format src",
"validate": "npm run lint && npm run typecheck && npm test",
"test": "tsx --test test/**.test.ts",
"test:watch": "tsx --watch --test test/**.test.ts"
},
"peerDependencies": {
"pg": ">=7.4.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/node": "^18.11.9 ",
"@types/pg": "^8.11.0",
"chai": "^5.2.0",
"husky": "^9.1.7",
"pg-mem": "^3.0.5",
"shx": "^0.4.0",
"tsx": "^4.19.4",
"typescript": "^5.8.3"
}
}