-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 986 Bytes
/
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
{
"name": "sql-to-nosql",
"version": "0.1.04",
"description": "Run SQL quries on your Mongodb database.",
"repository": {
"type": "git",
"url": "https://github.com/ariflogs/SQL-to-NoSQL"
},
"homepage": "https://github.com/ariflogs/SQL-to-NoSQL",
"main": "dist/index.mjs",
"scripts": {
"dev": "tsc -w",
"start": "tsc && node dist/index.mjs",
"check": "npx prettier . --check",
"pretty": "npx prettier . --write",
"build": "tsc && pnpm pretty && pnpm check",
"test:dev": "vitest watch",
"test:prod": "bash ./scripts/run-unit-test.sh"
},
"author": {
"name": "Arif Hossain",
"email": "devarifhossain@gmail.com",
"url": "https://ariflogs.com"
},
"keywords": [
"ORM",
"SQL",
"NoSQL",
"SQL to NoSQL"
],
"license": "MIT",
"devDependencies": {
"prettier": "3.0.3",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"vitest": "^0.34.6"
},
"dependencies": {
"mongodb": "^6.1.0"
}
}