-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.31 KB
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
{
"name": "@detain/dbrel-data-js",
"version": "1.0.0",
"description": "Node.js backend data provider for database relationship visualization. MySQL-based counterpart to @detain/dbrel-data-php, produces identical JSON payload consumed by @detain/dbrel-viz.",
"keywords": [
"database",
"visualization",
"relationships",
"schema",
"mysql",
"erd",
"dataviz",
"backend",
"nodejs"
],
"author": "Joe Huss <detain@interserver.net>",
"license": "MIT",
"main": "src/index.js",
"files": [
"src/",
"README.md",
"LICENSE"
],
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/detain/dbrel-data-js.git"
},
"homepage": "https://github.com/detain/dbrel-data-js#readme",
"bugs": {
"url": "https://github.com/detain/dbrel-data-js/issues"
},
"peerDependencies": {
"mysql2": "^3.0.0"
},
"peerDependenciesMeta": {
"mysql2": {
"optional": true
}
},
"devDependencies": {
"jest": "^29.7.0",
"mysql2": "^3.9.0"
},
"jest": {
"testEnvironment": "node",
"testMatch": [
"<rootDir>/test/**/*.test.js"
]
},
"engines": {
"node": ">=14"
},
"publishConfig": {
"access": "public"
}
}