UNPKG

devebot

Version:

Nodejs Microservice Framework

89 lines (88 loc) 3.25 kB
{ "name": "devebot", "version": "0.4.3", "description": "Nodejs Microservice Framework", "main": "index.js", "directories": { "lib": "lib/" }, "engines": { "node": ">=10" }, "files": [ "bin/", "config/", "data/", "dist/", "lib/" ], "scripts": { "clean": "rm -rf ./lib", "clean-modules": "rm -rf ./node_modules ./package-lock.json ./test/node_modules ./test/package-lock.json", "setup-modules": "npm install --ignore-scripts; npm --prefix=test install --ignore-scripts", "reset-modules": "npm run clean-modules && npm run setup-modules", "check": "npm exec -- eslint config src index.js", "check-silent": "npm exec -- eslint --quiet config src index.js", "pretest": "npm run clean && BABEL_ENV=${DEVEBOT_BABEL_ENV:-production} NODE_ENV=${DEVEBOT_NODE_ENV:-test} npm run build", "prove": "npm --prefix=test exec -- mocha --recursive ./test/{bdd,tdd}/${DEVEBOT_TESTCASES:-*}-test.js", "test": "npm run prove", "prepublishOnly": "npm run check-silent && npm run clean && BABEL_ENV=${DEVEBOT_BABEL_ENV:-test} NODE_ENV=${DEVEBOT_NODE_ENV:-production} npm run build", "verify": "npm run prepublishOnly && npm run prove", "build-without-cleaning": "babel ./src -d ./lib", "build": "npm run clean && npm run build-without-cleaning", "eslint-lib": "npm exec -- eslint ./lib/ --quiet", "eslint-lib-verbose": "npm exec -- eslint ./lib/", "eslint-src": "npm exec -- eslint ./src/ --quiet", "eslint-src-verbose": "npm exec -- eslint ./src/", "test-publish": "npm run prepublishOnly && npm run prove", "test-without-rebuilding": "npm --prefix=test exec -- mocha --recursive ./test/{bdd,tdd}/${DEVEBOT_TESTCASES:-*}-test.js --reporter dot", "test-to-reports": "npm run build && npm --prefix=test exec -- mocha --recursive ./test/{bdd,tdd}/${DEVEBOT_TESTCASES:-*}-test.js --reporter mochawesome --reporter-options reportDir=test-reports,reportFilename=index" }, "repository": { "type": "git", "url": "git+https://github.com/devebot/devebot.git" }, "keywords": [ "devebot", "framework" ], "author": { "name": "Devebot", "email": "contact@devebot.com", "url": "https://github.com/devebot" }, "license": "MIT", "bugs": { "url": "https://github.com/devebot/devebot/issues" }, "homepage": "https://github.com/devebot/devebot#readme", "dependencies": { "bluebird": "3.7.2", "codetags": "0.1.2", "envcloak": "0.2.1", "injektor": "0.1.19", "lodash": "4.17.21", "logolite": "^0.4.0", "logzilla": "^0.4.0", "minimist": "^1.2.7", "schemato": "^0.2.0", "semver": "5.7.0", "ws": "3.3.3" }, "devDependencies": { "@babel/cli": "^7.19.3", "@babel/core": "^7.20.2", "@babel/preset-env": "^7.20.2", "babel-plugin-minify-mangle-names": "^0.5.1", "babel-plugin-transform-async-to-module-method": "^6.24.1", "cross-env": "^5.2.0", "eslint": "^5.16.0", "eslint-config-promise": "^2.0.2", "eslint-config-standard": "^12.0.0", "eslint-plugin-import": "^2.14.0", "eslint-plugin-node": "^7.0.1", "eslint-plugin-promise": "^4.0.1", "eslint-plugin-security": "^1.5.0", "eslint-plugin-standard": "^4.0.0" } }