-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
87 lines (87 loc) · 2.05 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
{
"name": "@mikro-orm/mongo-highlighter",
"version": "1.0.0",
"description": "Node.js MongoDB query highlighter for CLI based.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/mikro-orm/mongo-highlighter.git"
},
"keywords": [
"mongodb",
"mongo",
"nodejs",
"highlight",
"tokenizer"
],
"author": "Martin Adámek",
"license": "MIT",
"bugs": {
"url": "https://github.com/mikro-orm/mongo-highlighter/issues"
},
"homepage": "https://mikro-orm.io",
"engines": {
"node": ">= 10.13.0"
},
"scripts": {
"release": "yarn build && cd dist && npm publish && cd ..",
"build": "yarn clean && yarn compile && yarn copy",
"clean": "rimraf ./dist",
"compile": "tsc -p tsconfig.json",
"copy": "ts-node -T ./scripts/copy.ts",
"lint": "eslint src/*.ts",
"test": "jest"
},
"jest": {
"preset": "ts-jest",
"collectCoverage": true,
"collectCoverageFrom": [
"<rootDir>/src/**/*.ts"
],
"modulePathIgnorePatterns": [
"dist/package.json",
"<rootDir>/package.json"
]
},
"renovate": {
"extends": [
"config:base",
":preserveSemverRanges",
":semanticCommitTypeAll(chore)"
],
"semanticCommits": "enabled",
"separateMajorMinor": false,
"dependencyDashboard": false,
"packageRules": [
{
"matchUpdateTypes": [
"patch",
"minor"
],
"groupName": "patch/minor dependencies",
"groupSlug": "all-non-major",
"automerge": true,
"automergeType": "branch"
}
],
"schedule": [
"every weekday"
]
},
"dependencies": {
"ansi-colors": "^4.1.1"
},
"devDependencies": {
"@types/jest": "^27.0.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "~5.50.0",
"@typescript-eslint/parser": "~5.50.0",
"eslint": "^7.6.0",
"jest": "^27.0.0",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.0",
"ts-node": "^10.0.0",
"typescript": "^4.0.0"
}
}