forked from w3tecch/typeorm-seeding
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
68 lines (68 loc) · 1.88 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
{
"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": "12.1.0",
"ora": "5.4.1",
"tslib": "2.7.0"
},
"description": "🌱 A delightful way to seed test data into your database.",
"devDependencies": {
"@biomejs/biome": "1.9.3",
"@faker-js/faker": "9.0.3",
"@jorgebodega/typeorm-factory": "2.1.0",
"@types/jest": "29.5.13",
"@types/node": "20.16.10",
"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",
"seed",
"seeding",
"orm"
],
"license": "MIT",
"main": "dist/index.js",
"name": "@jorgebodega/typeorm-seeding",
"packageManager": "pnpm@9.11.0",
"peerDependencies": {
"typeorm": "^0.3.0"
},
"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": "biome format --write",
"format:ci": "biome format",
"lint": "biome lint",
"lint:fix": "biome lint --fix",
"lint:ci": "biome lint",
"prebuild": "rimraf dist",
"seed:run": "ts-node ./src/cli.ts seed",
"test": "NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" jest",
"test:ci": "NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" jest --silent",
"test:cov": "NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" jest --coverage --silent",
"test:watch": "NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" jest --watch",
"typecheck": "tsc --noEmit"
},
"types": "dist/index.d.ts",
"version": "7.1.0"
}