-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 1.99 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 1.99 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
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@adrien-may/factory",
"version": "2.1.0",
"description": "🏭 Testing made easier with factories for your entities/models.",
"keywords": [
"factories",
"factory",
"fixtures",
"fixtures-replacement",
"strapi",
"testing",
"tests",
"typeorm",
"typescript"
],
"homepage": "https://github.com/teamMay/factory#readme",
"license": "ISC",
"author": "Adrien Brunet",
"repository": {
"type": "git",
"url": "git+https://github.com/teamMay/factory.git"
},
"files": [
"dist/**/*"
],
"sideEffects": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc -p tsconfig.build.json",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"fmt": "oxfmt --write",
"fmt:check": "oxfmt --check",
"check-tsc": "tsc -p tsconfig.json --noEmit",
"check-all": "yarn lint && yarn fmt:check && yarn check-tsc",
"fix-all": "yarn lint:fix && yarn fmt",
"prepare": "husky",
"prepublish": "yarn prebuild && tsc --project ./tsconfig.build.json",
"test": "jest"
},
"devDependencies": {
"@payloadcms/db-sqlite": "3.79.1",
"@swc/core": "1.15.18",
"@swc/jest": "0.2.39",
"@tsconfig/node24": "^24.0.4",
"@types/jest": "^30.0.0",
"@types/node": "^25.5.0",
"@types/sinon": "^21.0.0",
"codecov": "^3.8.3",
"husky": "^9.1.7",
"jest": "^30.3.0",
"lint-staged": "^16.4.0",
"oxfmt": "^0.42.0",
"oxlint": "^1.56.0",
"payload": "3.79.1",
"reflect-metadata": "0.2.2",
"rimraf": "^6.1.3",
"sinon": "^21.0.3",
"sqlite3": "^6.0.1",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typeorm": "^0.3.28",
"typescript": "^5.9.3"
},
"peerDependencies": {
"payload": ">=3.79.1",
"typeorm": ">0.3.25"
},
"peerDependenciesMeta": {
"payload": {
"optional": true
},
"typeorm": {
"optional": true
}
},
"engines": {
"node": ">=24"
},
"packageManager": "yarn@4.12.0"
}