-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
86 lines (86 loc) · 2.36 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
{
"name": "@lomray/typeorm-json-query",
"version": "1.0.0",
"description": "Service for convert JSON query to TypeORM query builder",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"keywords": [
"js",
"service",
"helpers",
"json",
"typeorm",
"typescript",
"convert"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/Lomray-Software/typeorm-json-query.git"
},
"bugs": {
"url": "https://github.com/Lomray-Software/typeorm-json-query/issues"
},
"homepage": "https://github.com/Lomray-Software/typeorm-json-query",
"author": "Mikhail Yarmaliuk",
"license": "Apache-2.0",
"scripts": {
"build": "rollup -c",
"test": "TS_NODE_COMPILER_OPTIONS='{\"target\":\"es6\"}' mocha --harmony --no-warnings __tests__ --require ts-node/register --recursive --unhandled-rejections=strict --exit",
"prettier:format": "prettier --write 'src/**/*.{ts,*.ts}'",
"prettier:check": "prettier --check --debug-check 'src/**/*.{ts,*.ts}'",
"lint:check": "eslint --ext '.ts,.tsx' 'src/**/*.{ts,*.ts}'",
"lint:format": "eslint --fix --ext '.ts,.tsx' 'src/**/*.{ts,*.ts}'",
"ts:check": "tsc --project ./tsconfig.json --skipLibCheck --noemit",
"prepare": "husky install"
},
"dependencies": {
"@lomray/microservices-types": "^1.15.0"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@lomray/eslint-config": "^3.0.0",
"@lomray/prettier-config": "^1.2.0",
"@semantic-release/npm": "^10.0.3",
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"@types/node": "^18.13.0",
"@types/sinon": "^10.0.15",
"@types/sinon-chai": "^3.2.9",
"chai": "^4.3.7",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"pg": "^8.10.0",
"prettier": "^2.8.8",
"rewiremock": "^3.14.5",
"rollup": "^2.79.1",
"rollup-plugin-ts": "^3.2.0",
"semantic-release": "^21.0.2",
"sinon": "^15.0.4",
"sinon-chai": "^3.7.0",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"ttypescript": "^1.5.15",
"typescript": "^4.7.4"
},
"peerDependencies": {
"typeorm": "0.2.41"
},
"bundledDependencies": [
"tslib"
],
"overrides": {
"typeorm": {
"xml2js": "0.5.0"
}
}
}