-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 826 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 826 Bytes
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
{
"name": "json-schema-table",
"version": "2.0.3",
"description": "Creates and maintains a SQL table structure",
"repository": "https://github.com/andrglo/json-schema-table.git",
"author": {
"name": "Andre Gloria",
"email": "andredagloria@gmail.com"
},
"files": [
"src"
],
"main": "src/index.js",
"keywords": [
"json",
"schema",
"SQL",
"Postgres",
"mssql"
],
"devDependencies": {
"chai": "^6.2.1",
"eslint": "^9.39.1",
"eslint-config-google": "^0.14.0",
"mocha": "^11.7.5",
"mssql-cr-layer": "^3.0.3",
"pg-cr-layer": "^2.0.25"
},
"scripts": {
"test": "mocha --bail --exit --timeout 30000 test/index.js",
"ssh": "docker exec -it json-schema-table-dms-1 fish"
},
"license": "MIT",
"dependencies": {
"lodash": "^4.17.21"
}
}