-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.04 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
{
"name": "awaitabase",
"version": "1.1.4",
"description": "Wait for a database to be available prior to closing the process.",
"main": "dist/index.js",
"scripts": {
"test": "npm run build && node .",
"test:mongo": "npm run build && node . mongo",
"test:postgres": "npm run build && node . postgres",
"build": "tsc --declaration && tsc-alias"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/ridafkih/awaitabase.git"
},
"bin": {
"awaitabase": "dist/index.js"
},
"keywords": [
"database",
"await",
"wait"
],
"author": "Rida F'kih",
"license": "ISC",
"bugs": {
"url": "https://github.com/ridafkih/awaitabase/issues"
},
"homepage": "https://github.com/ridafkih/awaitabase#readme",
"devDependencies": {
"ts-loader": "^9.2.8",
"ts-node": "^10.7.0",
"tsc-alias": "^1.6.4",
"tsconfig-paths": "^3.14.0",
"typescript": "^4.6.2"
},
"dependencies": {
"dotenv": "^16.0.0",
"ora": "^5.4.1",
"pg-promise": "^10.11.1",
"mongoose": "^6.2.7"
}
}