forked from kibae/typeorm-auditing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.46 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": "@n4it/typeorm-audit",
"version": "0.0.1",
"description": "TypeORM Auditing: Create history tables and manage changes of entities automagically.",
"homepage": "https://github.com/nest4it/typeorm-auditing",
"repository": {
"type": "git",
"url": "https://github.com/nest4it/typeorm-auditing.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"release": "semantic-release",
"build": "tsc",
"test": "jest",
"lint": "eslint \"./**/*.ts\" --fix"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"TypeORM",
"n4it",
"audit",
"history"
],
"author": "n4it <hello@n4it.nl>",
"license": "GPL-3.0",
"devDependencies": {
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/github": "^10.1.6",
"@semantic-release/npm": "^10.0.4",
"@semantic-release/release-notes-generator": "^14.0.1",
"@typescript-eslint/eslint-plugin": "6.0.0",
"@typescript-eslint/parser": "6.0.0",
"@types/jest": "^28.1.6",
"eslint": "8.42.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-prettier": "5.0.0",
"jest": "^29.7.0",
"mysql2": "^3.12.0",
"prettier": "^3.4.2",
"reflect-metadata": "^0.2.2",
"semantic-release": "^21.0.7",
"sqlite3": "^5.1.7",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2"
},
"dependencies": {
"typeorm": "^0.3.20"
},
"files": [
"./dist"
],
"engines": {
"node": ">=18"
}
}