@json-express/core
Version:
Zero-config JSON server with REST API, JWT authentication, HTTPS support, schema validation & search. Perfect for rapid prototyping, API mocking, and development.
103 lines • 2.21 kB
JSON
{
"name": "@json-express/core",
"version": "0.2.1",
"description": "Zero-config JSON server with REST API, JWT authentication, HTTPS support, schema validation & search. Perfect for rapid prototyping, API mocking, and development.",
"keywords": [
"json",
"express",
"server",
"mock",
"json-server",
"json-express",
"express-server",
"mock server",
"fake server",
"dummy server",
"mock-server",
"json-mock",
"express-mock",
"mock-json",
"json-api",
"express-api",
"mock-api",
"jsonserver",
"jsonexpress",
"mockserver",
"expressserver",
"json_server",
"mock_server",
"express_api",
"json_api",
"fake-json",
"https",
"jwt"
],
"author": {
"name": "vazmat",
"url": "https://github.com/vaz-matri"
},
"license": "ISC",
"type": "module",
"preferGlobal": true,
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"cors": "^2.8.5",
"devcert": "^1.2.2",
"express": "5.1.0",
"express-session": "^1.18.1",
"get-port": "^7.1.0",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"lodash.get": "^4.4.2",
"passport": "^0.7.0",
"passport-google-oauth20": "^2.0.0",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0"
},
"devDependencies": {
"@faker-js/faker": "^9.9.0",
"nodemon": "3.1.10"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vaz-matri/json-express.git"
},
"bugs": {
"url": "https://github.com/vaz-matri/json-express/issues"
},
"homepage": "https://jsonexpress.com/",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/vaz-matri"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"files": [
"bin/",
"src/",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"bin": {
"json-express": "./bin/exec.js"
},
"os": [
"darwin",
"linux",
"win32"
],
"cpu": [
"x64",
"arm64"
],
"scripts": {
"dev": "nodemon bin/exec.js",
"dev:eg": "nodemon --exec 'cd ../../example && json-express'",
"serve": "cd ../../example && json-express"
}
}