-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
45 lines (45 loc) · 992 Bytes
/
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
{
"name": "typeorm-naming-strategies",
"version": "4.1.0",
"description": "Custom naming strategies for typeorm",
"main": "index.js",
"types": "index.d.ts",
"keywords": [
"typeorm",
"naming",
"strategy",
"node",
"orm",
"naming strategy",
"snake strategy",
"typeorm snake",
"naming strategies"
],
"repository": {
"type": "git",
"url": "https://github.com/tonivj5/typeorm-naming-strategies"
},
"author": "Toni Villena",
"license": "MIT",
"scripts": {
"build": "rm -rf dist && npm run tsc && cp README.md package.json dist/",
"tsc": "tsc",
"test": "jest"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all"
},
"devDependencies": {
"@types/jest": "^26.0.19",
"@types/node": "^14.6.2",
"prettier": "^2.1.1",
"ts-jest": "^26.4.4",
"tslint": "^6.1.3",
"typeorm": "^0.2.18",
"typescript": "^4.0.2"
},
"peerDependencies": {
"typeorm": "^0.2.0 || ^0.3.0"
}
}