UNPKG

superrequestable

Version:

A TypeScript package based that allows asynchronous inter-process communication to make "REST-like" GET and POST requests.

51 lines (50 loc) 1.61 kB
{ "name": "superrequestable", "version": "0.3.9", "description": "A TypeScript package based that allows asynchronous inter-process communication to make \"REST-like\" GET and POST requests.", "main": "./dist/index.js", "types": "./dist/index.d.ts", "scripts": { "clean": "tsc --build --clean", "build": "npm run clean && tsc --build", "start": "npm run build && node dist/index.js", "dev": "export DEBUG=superrequestable,superrequestable:*&& npm start && export DEBUG=", "test": "export TEST=true&& npm run build && mocha --full-trace --require ./dist/test/setup.js ./dist/test/*.test.js ./dist/test/**/*.test.js && export TEST=false", "test-dev": "export DEBUG=superrequestable,superrequestable:*&& npm test && export DEBUG=" }, "repository": { "type": "git", "url": "git+https://github.com/Fehniix/superrequestable.git" }, "keywords": [ "api", "inter-process", "process", "communication", "bullmq", "redis" ], "author": "Johnny Bueti", "license": "MIT", "bugs": { "url": "https://github.com/Fehniix/superrequestable/issues" }, "homepage": "https://github.com/Fehniix/superrequestable#readme", "dependencies": { "bullmq": "^1.57.3", "chai": "^4.3.4", "chai-as-promised": "^7.1.1", "dotenv": "^16.0.0", "ioredis": "^4.28.2", "mocha": "^10.0.0" }, "devDependencies": { "@types/chai": "^4.3.0", "@types/chai-as-promised": "^7.1.4", "@types/debug": "^4.1.7", "@types/ioredis": "^4.28.5", "@types/mocha": "^9.0.0", "@types/node": "^16.11.12", "debug": "^4.3.3" } }