UNPKG

okanjo-app-mysql

Version:

Service for interfacing with MySQL or MariaDB

105 lines (104 loc) 2.31 kB
{ "name": "okanjo-app-mysql", "version": "5.0.1", "description": "Service for interfacing with MySQL or MariaDB", "main": "MySQLService.js", "scripts": { "clean": "rm -rf .nyc_output coverage", "test": "node_modules/.bin/mocha -R spec test", "cover": "node_modules/.bin/nyc node_modules/mocha/bin/_mocha --exit", "cover_noclean": "node_modules/.bin/nyc --clean false node_modules/mocha/bin/_mocha --exit", "lint": "node_modules/.bin/eslint .", "report": "npm run cover && npm run lint", "report_full": "GENERATE_IDS=1 npm run report && GENERATE_IDS=0 npm run cover_noclean" }, "repository": { "type": "git", "url": "https://github.com/okanjo/okanjo-app-mysql.git" }, "keywords": [ "Okanjo", "OkanjoApp", "MySQL", "MariaDB", "Database" ], "author": "Okanjo Partners Inc", "license": "MIT", "devDependencies": { "eslint": "^8.11.0", "mocha": "^9.2.2", "nyc": "^15.1.0", "okanjo-app": "^3.2.0", "should": "^13.2.3" }, "peerDependencies": { "okanjo-app": ">=3" }, "dependencies": { "@mysql/xdevapi": "^8.0.28", "base-id": "^3.1.0", "debug": "^4.3.4", "mariadb": "^3.0.0" }, "mocha": { "require": ["should","./test/env.js"], "reporter": "spec", "checkLeaks": true, "timeout": 1000 }, "nyc": { "reporter": [ "text-summary", "html", "lcovonly" ] }, "eslintConfig": { "ignorePatterns": [ "/node_modules/**", "/coverage/**", "/.nyc_output/**" ], "env": { "es6": true, "node": true }, "parserOptions": { "ecmaVersion": 2020, "sourceType": "module" }, "plugins": [], "extends": "eslint:recommended", "globals": { "require": true, "module": true, "describe": true, "it": true, "before": true, "after": true, "afterEach": true, "Promise": true }, "overrides": [ { "files": [ "docs/**" ], "rules": { "no-console": "off", "no-unused-vars": "off" } }, { "files": [ "test/*.js" ], "parserOptions": { "sourceType": "script", "no-console": "off" } } ] } }