forked from MedFlyt/test-db-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.6 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
{
"name": "test-db-service",
"version": "0.1.2",
"description": "Developer tool to instantly provision test PostgreSQL databases from a template",
"main": "index.js",
"bin": "./test-db-service.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc --project src",
"start": "node -r source-map-support/register test-db-service.js",
"eslint": "eslint src --ext .ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MedFlyt/test-db-service.git"
},
"keywords": [
"PostgreSQL",
"Development",
"Fixture",
"Testing"
],
"author": "MedFlyt LLC.",
"license": "MIT",
"bugs": {
"url": "https://github.com/MedFlyt/test-db-service/issues"
},
"homepage": "https://github.com/MedFlyt/test-db-service#readme",
"files": [
"build"
],
"dependencies": {
"adm-zip": "0.5.5",
"assert-never": "1.2.1",
"env-paths": "2.2.1",
"express": "4.17.1",
"express-graceful-exit": "0.5.2",
"make-dir": "3.1.0",
"pg": "8.6.0",
"pg-connection-string": "2.5.0",
"promisify-child-process": "4.1.1",
"request": "2.88.2",
"rimraf": "3.0.2",
"source-map-support": "0.5.19",
"tar": "6.1.0"
},
"devDependencies": {
"@types/adm-zip": "0.4.34",
"@types/express": "4.17.11",
"@types/pg": "8.6.0",
"@types/request": "2.48.5",
"@types/rimraf": "3.0.0",
"@types/tar": "4.0.4",
"@typescript-eslint/eslint-plugin": "4.29.2",
"@typescript-eslint/parser": "4.29.2",
"eslint": "7.32.0",
"eslint-plugin-simple-import-sort": "7.0.0",
"typescript": "4.2.4"
}
}