meadow-endpoints 4.0.9 → 4.0.10

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.
Files changed (1) hide show
  1. package/package.json +9 -18
package/package.json CHANGED
@@ -1,16 +1,16 @@
1
1
  {
2
2
  "name": "meadow-endpoints",
3
- "version": "4.0.9",
3
+ "version": "4.0.10",
4
4
  "description": "Automatic API endpoints for Meadow data.",
5
5
  "main": "source/Meadow-Endpoints.js",
6
6
  "scripts": {
7
7
  "start": "node source/Meadow-Endpoints.js",
8
8
  "harness": "node debug/Harness.js",
9
9
  "killharness": "debug/KillHarness.sh",
10
- "coverage": "./node_modules/.bin/nyc --reporter=lcov --reporter=text-lcov ./node_modules/mocha/bin/_mocha -- -u tdd -R spec",
11
- "test": "./node_modules/.bin/mocha --exit -u tdd -R spec",
12
- "tests": "./node_modules/.bin/mocha -u tdd --exit -R spec --grep",
13
- "build": "./node_modules/.bin/gulp build",
10
+ "coverage": "npx quack coverage",
11
+ "test": "npx quack test",
12
+ "tests": "npx quack test -g",
13
+ "build": "npx quack build",
14
14
  "docker-dev-build-image": "docker build ./ -f Dockerfile_LUXURYCode -t retold/meadow-endpoints:local",
15
15
  "docker-dev-run": "docker run -it -d --name meadow-endpoints-dev -p 12343:8080 -p 12305:3306 -p 18086:8086 -v \"$PWD/.config:/home/coder/.config\" -v \"$PWD:/home/coder/meadow-endpoints\" -u \"$(id -u):$(id -g)\" -e \"DOCKER_USER=$USER\" retold/meadow-endpoints:local",
16
16
  "check": "npx -p typescript tsc --noEmit"
@@ -49,33 +49,24 @@
49
49
  "devDependencies": {
50
50
  "alasql": "^4.17.0",
51
51
  "better-sqlite3": "^12.6.2",
52
- "browserify": "^17.0.1",
53
- "chai": "6.2.2",
54
52
  "chance": "^1.1.13",
55
- "gulp": "^5.0.1",
56
- "gulp-babel": "^8.0.0",
57
- "gulp-sourcemaps": "^3.0.0",
58
- "gulp-terser": "^2.1.0",
59
53
  "gulp-util": "^3.0.8",
60
54
  "meadow-connection-sqlite": "file:../meadow-connection-sqlite",
61
- "mocha": "11.7.5",
62
55
  "mysql2": "^3.16.3",
63
- "nyc": "^17.1.0",
64
56
  "orator-serviceserver-restify": "^2.0.5",
65
57
  "papaparse": "^5.5.3",
58
+ "quackage": "^1.0.58",
66
59
  "supertest": "^7.2.2",
67
60
  "typescript": "^5.9.3",
68
- "vinyl-buffer": "^1.0.1",
69
- "vinyl-source-stream": "^2.0.0",
70
61
  "why-is-node-running": "^3.2.2"
71
62
  },
72
63
  "dependencies": {
73
64
  "async": "3.2.6",
74
- "fable": "^3.1.55",
65
+ "fable": "^3.1.63",
75
66
  "JSONStream": "^1.3.5",
76
- "meadow": "^2.0.22",
67
+ "meadow": "^2.0.23",
77
68
  "meadow-filter": "^1.0.10",
78
- "orator": "^5.0.2",
69
+ "orator": "^6.0.3",
79
70
  "underscore": "^1.13.7"
80
71
  }
81
72
  }