-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.91 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-relations",
"version": "1.3.4",
"description": "Tools for working with TypeORM relations.",
"keywords": [
"typeorm",
"relations"
],
"author": "Equalogic Ltd",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/equalogic/typeorm-relations",
"repository": {
"type": "git",
"url": "https://github.com/equalogic/typeorm-relations.git"
},
"scripts": {
"prebuild": "rimraf dist && npm run barrels:generate",
"build": "tsc -p tsconfig.build.json",
"postbuild": "cp package.json README.md dist/",
"format": "prettier --write .",
"lint": "eslint --ext .ts --ignore-path .gitignore .",
"lint:fix": "eslint --ext .ts --ignore-path .gitignore . --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "rimraf test/.results && mkdirp test/.results && jest --ci --runInBand",
"postversion": "npm run postbuild",
"release": "np",
"barrels:generate": "barrelsby --config barrelsby.json"
},
"peerDependencies": {
"typeorm": "^0.3.0"
},
"dependencies": {
"lodash.mergewith": "4.6.2"
},
"devDependencies": {
"@types/jest": "29.5.14",
"@types/lodash.mergewith": "4.6.9",
"@types/node": "20.17.12",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"barrelsby": "2.8.1",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.1.1",
"jest": "29.7.0",
"mkdirp": "3.0.1",
"np": "8.0.4",
"prettier": "3.0.3",
"sqlite3": "5.1.7",
"ts-jest": "29.2.5",
"typeorm": "0.3.20",
"typescript": "5.7.2"
},
"jest-junit": {
"outputDirectory": "./test/.results",
"outputName": "junit.xml"
},
"main": "index.js",
"types": "index.d.ts"
}