meadow 2.0.22 → 2.0.23
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 +12 -22
package/package.json
CHANGED
|
@@ -1,28 +1,28 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "meadow",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.23",
|
|
4
4
|
"description": "A data access library.",
|
|
5
5
|
"main": "source/Meadow.js",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"start": "node source/Meadow.js",
|
|
8
|
-
"coverage": "
|
|
9
|
-
"test": "
|
|
10
|
-
"tests": "
|
|
11
|
-
"build": "
|
|
8
|
+
"coverage": "npx quack coverage",
|
|
9
|
+
"test": "npx quack test",
|
|
10
|
+
"tests": "npx quack test -g",
|
|
11
|
+
"build": "npx quack build --full-paths",
|
|
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",
|
|
15
15
|
"docker-mysql-start": "./scripts/mysql-test-db.sh start",
|
|
16
16
|
"docker-mysql-stop": "./scripts/mysql-test-db.sh stop",
|
|
17
17
|
"docker-mysql-status": "./scripts/mysql-test-db.sh status",
|
|
18
|
-
"test-mysql": "./scripts/mysql-test-db.sh start &&
|
|
19
|
-
"test-mysql-all": "./scripts/mysql-test-db.sh start &&
|
|
18
|
+
"test-mysql": "./scripts/mysql-test-db.sh start && npx quack test -g Meadow-Provider-MySQL",
|
|
19
|
+
"test-mysql-all": "./scripts/mysql-test-db.sh start && npx mocha -u tdd --exit -R spec",
|
|
20
20
|
"docker-mssql-start": "./scripts/mssql-test-db.sh start",
|
|
21
21
|
"docker-mssql-stop": "./scripts/mssql-test-db.sh stop",
|
|
22
22
|
"docker-mssql-status": "./scripts/mssql-test-db.sh status",
|
|
23
|
-
"test-mssql": "./scripts/mssql-test-db.sh start &&
|
|
24
|
-
"test-mssql-all": "./scripts/mssql-test-db.sh start &&
|
|
25
|
-
"test-all-providers": "./scripts/mysql-test-db.sh start && ./scripts/mssql-test-db.sh start &&
|
|
23
|
+
"test-mssql": "./scripts/mssql-test-db.sh start && npx quack test -g Meadow-Provider-MSSQL",
|
|
24
|
+
"test-mssql-all": "./scripts/mssql-test-db.sh start && npx mocha -u tdd --exit -R spec",
|
|
25
|
+
"test-all-providers": "./scripts/mysql-test-db.sh start && ./scripts/mssql-test-db.sh start && npx mocha -u tdd --exit -R spec",
|
|
26
26
|
"docker-cleanup": "./scripts/meadow-test-cleanup.sh"
|
|
27
27
|
},
|
|
28
28
|
"mocha": {
|
|
@@ -60,28 +60,18 @@
|
|
|
60
60
|
"devDependencies": {
|
|
61
61
|
"alasql": "^4.1.10",
|
|
62
62
|
"better-sqlite3": "^12.6.2",
|
|
63
|
-
"browserify": "^17.0.0",
|
|
64
|
-
"chai": "4.3.10",
|
|
65
63
|
"fable": "^3.1.53",
|
|
66
|
-
"gulp": "^4.0.2",
|
|
67
|
-
"gulp-babel": "^8.0.0",
|
|
68
|
-
"gulp-sourcemaps": "^3.0.0",
|
|
69
|
-
"gulp-terser": "^2.1.0",
|
|
70
64
|
"gulp-util": "^3.0.8",
|
|
71
65
|
"meadow-connection-mssql": "^1.0.10",
|
|
72
66
|
"meadow-connection-mysql": "^1.0.7",
|
|
73
67
|
"meadow-connection-sqlite": "file:../meadow-connection-sqlite",
|
|
74
|
-
"mocha": "10.2.0",
|
|
75
68
|
"mysql2": "^3.6.3",
|
|
76
|
-
"
|
|
77
|
-
"vinyl-buffer": "^1.0.1",
|
|
78
|
-
"vinyl-source-stream": "^2.0.0"
|
|
69
|
+
"quackage": "^1.0.58"
|
|
79
70
|
},
|
|
80
71
|
"dependencies": {
|
|
81
72
|
"async": "3.2.5",
|
|
82
|
-
"foxhound": "^2.0.
|
|
73
|
+
"foxhound": "^2.0.18",
|
|
83
74
|
"is-my-json-valid": "2.20.6",
|
|
84
|
-
"npm-check-updates": "^16.14.6",
|
|
85
75
|
"simple-get": "^4.0.1"
|
|
86
76
|
}
|
|
87
77
|
}
|