-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.57 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
{
"name": "typeorm-naming-strategy",
"version": "2.0.12",
"packageManager": "[email protected]",
"description": "Custom naming strategies for typeorm",
"author": {
"name": "Chantouch Sek",
"email": "[email protected]",
"url": "https://chantouch.me"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/chantouchsek/typeorm-naming-strategy"
},
"keywords": [
"typeorm",
"naming",
"strategy",
"node",
"orm",
"naming strategy",
"snake strategy",
"typeorm snake",
"naming strategies"
],
"main": "dist/main.js",
"types": "dist/main.d.ts",
"files": [
"dist"
],
"engines": {
"node": "^12.20.0 || >=14.13.0"
},
"scripts": {
"build": "rimraf dist && tsc",
"test": "vitest --run",
"test:cov": "vitest run --coverage",
"prepublish": "yarn build",
"prepare": "husky",
"lint": "eslint .",
"release": "standard-version && git push --follow-tags origin main && npm publish"
},
"peerDependencies": {
"typeorm": "^0.3"
},
"devDependencies": {
"@antfu/eslint-config": "^3.11.2",
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@types/node": "^22.10.1",
"@vitest/coverage-v8": "^2.1.8",
"eslint": "^9.16.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"standard-version": "^9.5.0",
"ts-node": "^10.9.2",
"typeorm": "^0.3.20",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"lint-staged": {
"*.{ts,js}": "eslint"
}
}