meadow 2.0.26 → 2.0.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "meadow",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.27",
|
|
4
4
|
"description": "A data access library.",
|
|
5
5
|
"main": "source/Meadow.js",
|
|
6
6
|
"scripts": {
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"coverage": "npx quack coverage",
|
|
9
9
|
"test": "npx quack test",
|
|
10
10
|
"tests": "npx quack test -g",
|
|
11
|
-
"build": "npx quack build
|
|
11
|
+
"build": "npx quack build",
|
|
12
12
|
"docker-dev-build": "docker build ./ -f Dockerfile_LUXURYCode -t retold/meadow:local",
|
|
13
13
|
"docker-dev-run": "docker run -it -d --name meadow-dev -p 12342:8080 -p 12106:3306 -v \"$PWD/.config:/home/coder/.config\" -v \"$PWD:/home/coder/meadow\" -u \"$(id -u):$(id -g)\" -e \"DOCKER_USER=$USER\" retold/meadow:local",
|
|
14
14
|
"docker-dev-shell": "docker exec -it meadow-dev /bin/bash",
|
|
@@ -40,6 +40,8 @@
|
|
|
40
40
|
"docker-dgraph-status": "./scripts/dgraph-test-db.sh status",
|
|
41
41
|
"test-dgraph": "./scripts/dgraph-test-db.sh start && npx quack test -g Meadow-Provider-DGraph",
|
|
42
42
|
"test-alasql": "npx quack test -g Meadow-Provider-ALASQL",
|
|
43
|
+
"test-sqlite-browser": "npx quack test -g Meadow-Provider-SQLiteBrowser",
|
|
44
|
+
"test-sqlite-browser-headless": "npx mocha -u tdd --exit --timeout 60000 test/Meadow-Provider-SQLiteBrowser-Headless_tests.js",
|
|
43
45
|
"test-all-providers": "./scripts/mysql-test-db.sh start && ./scripts/mssql-test-db.sh start && ./scripts/postgresql-test-db.sh start && ./scripts/mongodb-test-db.sh start && ./scripts/solr-test-db.sh start && ./scripts/dgraph-test-db.sh start && npx mocha -u tdd --exit -R spec",
|
|
44
46
|
"docker-cleanup": "./scripts/meadow-test-cleanup.sh",
|
|
45
47
|
"test-cleanup": "./scripts/meadow-test-cleanup.sh"
|
|
@@ -77,27 +79,29 @@
|
|
|
77
79
|
},
|
|
78
80
|
"homepage": "https://github.com/stevenvelozo/meadow",
|
|
79
81
|
"devDependencies": {
|
|
80
|
-
"alasql": "^4.
|
|
82
|
+
"alasql": "^4.17.0",
|
|
81
83
|
"better-sqlite3": "^12.6.2",
|
|
84
|
+
"dgraph-js-http": "^21.3.0",
|
|
82
85
|
"fable": "^3.1.63",
|
|
83
86
|
"gulp-util": "^3.0.8",
|
|
84
|
-
"meadow-connection-mssql": "^1.0.15",
|
|
85
|
-
"meadow-connection-mysql": "^1.0.13",
|
|
86
87
|
"meadow-connection-dgraph": "^1.0.2",
|
|
87
88
|
"meadow-connection-mongodb": "^1.0.2",
|
|
89
|
+
"meadow-connection-mssql": "^1.0.15",
|
|
90
|
+
"meadow-connection-mysql": "^1.0.13",
|
|
88
91
|
"meadow-connection-postgresql": "^1.0.1",
|
|
89
92
|
"meadow-connection-rocksdb": "^0.0.2",
|
|
90
93
|
"meadow-connection-solr": "^1.0.2",
|
|
91
94
|
"meadow-connection-sqlite": "^1.0.17",
|
|
92
|
-
"
|
|
95
|
+
"meadow-connection-sqlite-browser": "^1.0.0",
|
|
93
96
|
"mongodb": "^6.12.0",
|
|
94
|
-
"mysql2": "^3.
|
|
95
|
-
"
|
|
97
|
+
"mysql2": "^3.18.2",
|
|
98
|
+
"puppeteer": "^24.38.0",
|
|
99
|
+
"quackage": "^1.0.60",
|
|
96
100
|
"solr-client": "^0.9.0"
|
|
97
101
|
},
|
|
98
102
|
"dependencies": {
|
|
99
|
-
"async": "3.2.
|
|
100
|
-
"foxhound": "^2.0.
|
|
103
|
+
"async": "3.2.6",
|
|
104
|
+
"foxhound": "^2.0.22",
|
|
101
105
|
"is-my-json-valid": "2.20.6",
|
|
102
106
|
"simple-get": "^4.0.1"
|
|
103
107
|
}
|
|
@@ -22,7 +22,7 @@ var MeadowProvider = function()
|
|
|
22
22
|
var _Headers = {};
|
|
23
23
|
var _Cookies = [];
|
|
24
24
|
|
|
25
|
-
var _EndpointSettings = (_Fable.settings.hasOwnProperty('MeadowEndpoints')) ? JSON.parse(JSON.stringify(_Fable.settings.
|
|
25
|
+
var _EndpointSettings = (_Fable.settings.hasOwnProperty('MeadowEndpoints')) ? JSON.parse(JSON.stringify(_Fable.settings.MeadowEndpoints)) : (
|
|
26
26
|
{
|
|
27
27
|
ServerProtocol: 'http',
|
|
28
28
|
ServerAddress: '127.0.0.1',
|