-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
58 lines (58 loc) · 1.41 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
{
"author": "Jorge Bodega <[email protected]> (https://github.com/jorgebodega)",
"dependencies": {
"tslib": "2.7.0"
},
"description": "🌱 A delightful way to use factories in your code.",
"devDependencies": {
"@biomejs/biome": "^1.8.2",
"@faker-js/faker": "9.0.3",
"@tsconfig/node18-strictest": "1.0.0",
"@types/jest": "29.5.12",
"@types/node": "20.16.8",
"jest": "29.7.0",
"rimraf": "6.0.1",
"sqlite3": "5.1.7",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"typeorm": "0.3.20",
"typescript": "5.6.2"
},
"engines": {
"node": ">=18 <19 || >=20"
},
"keywords": [
"typeorm",
"factory",
"entity",
"orm"
],
"license": "MIT",
"main": "dist/index.js",
"name": "@jorgebodega/typeorm-factory",
"packageManager": "[email protected]",
"peerDependencies": {
"typeorm": "^0.3.0"
},
"repository": {
"type": "git",
"url": "https://github.com/jorgebodega/typeorm-factory.git"
},
"scripts": {
"build": "tsc --project ./tsconfig.build.json",
"checks": "pnpm format:ci && pnpm lint:ci && pnpm typecheck",
"format": "biome format --write",
"format:ci": "biome format",
"lint": "biome lint",
"lint:fix": "biome lint --fix",
"lint:ci": "biome lint",
"prebuild": "rimraf dist",
"test:ci": "jest --silent",
"test:cov": "jest --coverage --silent",
"test:watch": "jest --watch",
"test": "jest",
"typecheck": "tsc --noEmit"
},
"types": "dist/index.d.ts",
"version": "2.1.0"
}