forked from mikro-orm/mikro-orm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
146 lines (146 loc) · 3.94 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
{
"name": "@mikro-orm/core",
"private": true,
"workspaces": [
"packages/*"
],
"version": "4.0.0",
"description": "TypeScript ORM for Node.js based on Data Mapper, Unit of Work and Identity Map patterns. Supports MongoDB, MySQL, PostgreSQL and SQLite databases as well as usage with vanilla JavaScript.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/mikro-orm/mikro-orm.git"
},
"keywords": [
"orm",
"mongo",
"mongodb",
"mysql",
"mariadb",
"postgresql",
"sqlite",
"sqlite3",
"ts",
"typescript",
"js",
"javascript",
"entity",
"ddd",
"mikro-orm",
"unit-of-work",
"data-mapper",
"identity-map"
],
"author": "Martin Adámek",
"license": "MIT",
"bugs": {
"url": "https://github.com/mikro-orm/mikro-orm/issues"
},
"homepage": "https://mikro-orm.io",
"scripts": {
"bootstrap": "lerna bootstrap && husky install",
"postinstall": "yarn bootstrap",
"clean": "lerna run clean",
"build": "lerna run build",
"release": "yarn build && lerna publish from-package --contents dist --force-publish",
"publish:next": "lerna publish --canary major --preid dev --dist-tag next --force-publish",
"release:next": "yarn build && yarn publish:next",
"test": "jest --runInBand",
"tsc-check-tests": "tsc --noEmit --project tests/tsconfig.json",
"coverage": "rimraf temp tests/generated-entities && yarn test --coverage",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"run-rs": "run-rs -v 4.2.3 -l ubuntu1804",
"run-rs-in-background": "yarn run-rs > /dev/null 2>&1 &",
"lint": "eslint packages/**/*.ts"
},
"jest": {
"testTimeout": 30000,
"preset": "ts-jest",
"collectCoverage": false,
"collectCoverageFrom": [
"<rootDir>/packages/*/src/**/*.ts"
],
"moduleNameMapper": {
"@mikro-orm/mongo-highlighter": "<rootDir>/node_modules/@mikro-orm/mongo-highlighter",
"@mikro-orm/sql-highlighter": "<rootDir>/node_modules/@mikro-orm/sql-highlighter",
"@mikro-orm/(.*)": "<rootDir>/packages/$1/src"
},
"modulePathIgnorePatterns": [
"dist/package.json",
"<rootDir>/package.json"
],
"coveragePathIgnorePatterns": [
"<rootDir>/packages/cli/src/cli.ts"
],
"globals": {
"ts-jest": {
"tsconfig": "tests/tsconfig.json"
}
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.ts": [
"eslint packages/**/*.ts --fix"
]
},
"renovate": {
"extends": [
"config:base"
],
"semanticCommits": "enabled",
"packageRules": [
{
"depTypeList": [
"devDependencies"
],
"automerge": true
}
],
"schedule": [
"every weekday"
]
},
"engines": {
"node": ">= 12.17.0 || >= 13.10.0"
},
"devDependencies": {
"@commitlint/cli": "12.1.4",
"@commitlint/config-conventional": "12.1.4",
"@mikro-orm/mongo-highlighter": "1.0.0",
"@mikro-orm/sql-highlighter": "1.0.1",
"@types/clone": "2.1.0",
"@types/fs-extra": "9.0.11",
"@types/jest": "26.0.23",
"@types/mysql2": "types/mysql2#d4ef3b2292f328049f7e4c545f6adab7d6a350a9",
"@types/node": "14.17.4",
"@types/pg": "8.6.0",
"@types/sqlstring": "2.3.0",
"@types/uuid": "8.3.0",
"@types/webpack-env": "1.16.1",
"@typescript-eslint/eslint-plugin": "3.10.1",
"@typescript-eslint/parser": "3.10.1",
"conditional-type-checks": "1.0.5",
"coveralls": "3.1.1",
"eslint": "7.29.0",
"eslint-plugin-jsdoc": "35.4.1",
"fs-extra": "10.0.0",
"gen-esm-wrapper": "1.1.2",
"guid-typescript": "1.0.9",
"husky": "7.0.0",
"jest": "26.6.3",
"lerna": "4.0.0",
"lint-staged": "11.0.0",
"rimraf": "3.0.2",
"run-rs": "0.7.5",
"ts-jest": "26.5.6",
"ts-node": "10.0.0",
"typescript": "4.3.5",
"uuid": "8.3.2"
}
}