This repository has been archived by the owner on Dec 7, 2023. It is now read-only.
forked from Char2sGu/mikro-orm-soft-delete
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.49 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
{
"name": "mikro-orm-soft-delete",
"version": "0.1.0",
"description": "",
"main": "lib/index.js",
"scripts": {
"test": "jest",
"prebuild": "rimraf lib",
"build": "tsc -b tsconfig.build.json",
"format": "prettier --write \"src/**/*.ts\" \"*.js\" \"*.json\"",
"format:diff": "prettier --list-different \"src/**/*.ts\"",
"lint": "eslint --cache \"src/**/*.ts\"",
"lint:fix": "eslint --cache --fix \"src/**/*.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheNightmareX/mikro-orm-soft-delete.git"
},
"author": {
"name": "Char2s",
"email": "Char2s@outlook.com"
},
"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": "^5.0.0-dev.611",
"@types/jest": "^27.0.3",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"jest": "^27.4.5",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.2",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"files": [
"src",
"lib",
"!**/__test__",
"!**/tsconfig.*",
"README*.md"
],
"dependencies": {
"tslib": "^2.3.1"
}
}