generated from Char2sGu/typescript-package-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
64 lines (64 loc) · 1.65 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
{
"name": "mikro-orm-soft-delete",
"version": "1.0.0-alpha.1",
"description": "",
"main": "lib/index.js",
"packageManager": "[email protected]",
"scripts": {
"test": "jest --detectOpenHandles",
"prebuild": "rimraf lib",
"build": "tsc -b tsconfig.build.json",
"format": "prettier --write \"**/*.ts\" \"*.js\" \"*.json\"",
"format:diff": "prettier --list-different \"**/*.ts\"",
"lint": "eslint --cache \"**/*.ts\"",
"lint:fix": "eslint --cache --fix \"**/*.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheNightmareX/mikro-orm-soft-delete.git"
},
"author": {
"name": "Char2s",
"email": "[email protected]"
},
"keywords": [
"typescript",
"mikro-orm",
"soft-delete"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/TheNightmareX/mikro-orm-soft-delete/issues"
},
"homepage": "https://github.com/TheNightmareX/mikro-orm-soft-delete#readme",
"devDependencies": {
"@mikro-orm/core": "^6.0.0",
"@mikro-orm/sqlite": "^6.0.0",
"@types/jest": "^29.5.8",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"jest": "^29.7.0",
"prettier": "^3.1.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.0.0"
},
"files": [
"src",
"lib",
"!**/__test__",
"!**/tsconfig.*",
"README*.md"
],
"peerDependencies": {
"@mikro-orm/core": "^6.0.0"
},
"engines": {
"node": ">=18.12.0"
}
}