-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.1 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.1 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
{
"name": "json-schema-entity",
"version": "7.0.32",
"description": "Manage a group of tables with a parent child relation in SQL that will be seen as a document, or entity, like a no SQL database",
"repository": "https://github.com/andrglo/json-schema-entity.git",
"author": {
"name": "Andre Gloria",
"email": "andredagloria@gmail.com"
},
"files": [
"src"
],
"main": "src/index.js",
"keywords": [
"SQL",
"document",
"entity",
"belongs",
"To",
"has",
"Many",
"has",
"One"
],
"devDependencies": {
"chai": "^6.2.1",
"eslint": "^9.39.1",
"eslint-config-google": "^0.14.0",
"glob": "^13.0.0",
"mocha": "^11.7.5",
"mssql-cr-layer": "^3.0.3",
"pg-cr-layer": "^2.0.25",
"unorm": "^1.6.0",
"validator": "^13.15.23"
},
"scripts": {
"test": "mocha --bail --exit --timeout 15000 test/index.js",
"ssh": "docker exec -it json-schema-entity-dms-1 fish"
},
"license": "MIT",
"dependencies": {
"@ayk/co": "^4.6.4",
"json-schema-table": "^2.0.3",
"lodash": "^4.17.21",
"sql-view": "^1.0.22"
}
}