-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
108 lines (108 loc) · 2.9 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
{
"name": "@synatic/noql",
"version": "4.2.10",
"description": "Convert SQL statements to mongo queries or aggregates",
"main": "index.js",
"files": [
"lib/",
"index.js"
],
"scripts": {
"build": "webpack --mode=production --config webpack.config.js",
"build-dev": "webpack --mode=development --config webpack.config.js",
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"lint-errors": "eslint . --quiet",
"prettier": "prettier . --write",
"test": "mocha --reporter spec --check-leaks test/",
"test-ci": "nyc --reporter text-summary mocha -- --reporter spec --check-leaks test/",
"test-cov": "nyc --reporter lcov --reporter text mocha -- --reporter dot --check-leaks test/",
"update": "npm-check -u"
},
"repository": {
"type": "git",
"url": "git+https://github.com/synatic/noql.git"
},
"keywords": [
"NoQL",
"mongodb",
"sql",
"sql to mongo",
"sql-to-nosql",
"sql-to-mongo",
"query-translation",
"sql-mongo-translation",
"sql-mongo-query-translation",
"sql-mongo-query",
"sql-mongo",
"sql-to-nosql-translation",
"Mongo Query Language"
],
"author": {
"name": "Synatic Inc",
"url": "https://www.synatic.com"
},
"contributors": [
{
"name": "Martin Naude",
"url": "https://www.synatic.com"
},
{
"name": "Thiren Bunsee",
"url": "https://www.synatic.com"
}
],
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/synatic/noql/issues"
},
"homepage": "https://noql.synatic.dev",
"engines": {
"node": ">=16",
"npm": ">=8.0.0"
},
"dependencies": {
"@synatic/json-magic": "^1.0.0",
"@synatic/schema-magic": "^1.2.2",
"@synatic/type-magic": "^1.0.0",
"bson": "6.10.1",
"check-types": "11.2.3",
"clone-deep": "4.0.1",
"dayjs": "1.11.13",
"deepmerge": "4.3.1",
"lodash": "4.17.21",
"node-sql-parser": "5.3.3",
"object-hash": "3.0.0"
},
"devDependencies": {
"@synatic/eslint-config-synatic-node": "^2.0.0",
"@types/mocha": "^10.0.1",
"async": "^3.2.0",
"clean-webpack-plugin": "^4.0.0",
"deep-equal": "^2.2.3",
"eslint": "^8.44.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.5.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.4.0",
"eslint-plugin-security": "^1.7.1",
"eslint-plugin-sonarjs": "^0.25.1",
"json-schema": "^0.4.0",
"mocha": "^10.0.0",
"moment": "^2.29.4",
"mongodb": "^6.7.0",
"mongodb-language-model": "^2.3.0",
"npm-check": "^6.0.1",
"nyc": "^17.0.0",
"pg": "^8.11.3",
"prettier": "^3.3.2",
"underscore.string": "^3.3.5",
"webpack": "^5.88.1",
"webpack-bundle-analyzer": "^4.9.0",
"webpack-cli": "^5.1.4"
},
"sideEffects": false
}