forked from w3tecch/typeorm-seeding
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.91 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.91 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
{
"author": "Gery Hirschfeld <gery.hirschfeld@w3tec.ch> (https://github.com/hirsch88)",
"bin": {
"typeorm-seeding": "dist/cli.js"
},
"contributors": [
"Jorge Bodega <jorge.bodega.f@gmail.com> (https://github.com/jorgebodega)"
],
"dependencies": {
"chalk": "4.1.2",
"commander": "14.0.3",
"ora": "5.4.1",
"tslib": "2.8.1"
},
"description": "🌱 A delightful way to seed test data into your database.",
"devDependencies": {
"@biomejs/biome": "2.4.13",
"@faker-js/faker": "9.9.0",
"@jorgebodega/typeorm-factory": "2.1.0",
"@tsconfig/node24": "24.0.4",
"@tsconfig/strictest": "2.0.8",
"@types/jest": "30.0.0",
"@types/node": "25.6.0",
"better-sqlite3": "12.9.0",
"jest": "30.3.0",
"rimraf": "6.1.3",
"ts-jest": "29.4.9",
"ts-node": "10.9.2",
"typeorm": "0.3.28",
"typescript": "5.9.3"
},
"engines": {
"node": "^20.19.0 || ^22.12.0 || >=24.11.0"
},
"keywords": [
"typeorm",
"seed",
"seeding",
"orm"
],
"license": "MIT",
"main": "dist/index.js",
"name": "@jorgebodega/typeorm-seeding",
"packageManager": "pnpm@10.33.2",
"peerDependencies": {
"typeorm": "^0.3.28"
},
"repository": {
"type": "git",
"url": "https://github.com/jorgebodega/typeorm-seeding.git"
},
"scripts": {
"build": "tsc --project ./tsconfig.build.json",
"checks": "pnpm format:ci && pnpm lint:ci && pnpm typecheck",
"format:ci": "biome format",
"format": "biome format --write",
"lint:ci": "biome lint",
"lint:fix": "biome lint --fix",
"lint": "biome lint",
"prebuild": "rimraf dist",
"seed:run": "ts-node ./src/cli.ts seed",
"test:ci": "NODE_OPTIONS=--experimental-vm-modules jest --silent",
"test:cov": "NODE_OPTIONS=--experimental-vm-modules jest --coverage --silent",
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"typecheck": "tsc --noEmit"
},
"types": "dist/index.d.ts",
"version": "8.0.0-next.1"
}