UNPKG

simple-oracledb

Version:

Extend capabilities of oracledb with simplified API for quicker development.

59 lines (58 loc) 1.79 kB
{ "name": "simple-oracledb", "version": "3.0.0", "description": "Extend capabilities of oracledb with simplified API for quicker development.", "author": { "name": "Sagie Gur-Ari", "email": "sagiegurari@gmail.com" }, "license": "Apache-2.0", "homepage": "http://github.com/sagiegurari/simple-oracledb", "repository": { "type": "git", "url": "http://github.com/sagiegurari/simple-oracledb.git" }, "bugs": { "url": "http://github.com/sagiegurari/simple-oracledb/issues" }, "keywords": [ "oracle", "oracledb", "database" ], "main": "index.js", "directories": { "lib": "lib", "test": "test/spec" }, "scripts": { "clean": "rm -Rf ./.nyc_output ./coverage", "format": "js-beautify --config ./.jsbeautifyrc --file ./*.js ./lib/**/*.js ./test/**/*.js", "lint-js": "eslint ./*.js ./lib/**/*.js ./test/**/*.js", "lint-css": "stylelint --allow-empty-input ./docs/**/*.css", "lint": "npm run lint-js && npm run lint-css", "jstest": "mocha --exit ./test/spec/**/*.js", "coverage": "nyc --reporter=html --reporter=text --reporter=lcovonly --check-coverage=true mocha --exit ./test/spec/**/*.js", "docs": "jsdoc2md lib/**/*.js > ./docs/api.md", "test": "npm run clean && npm run format && npm run lint && npm run docs && npm run coverage", "postpublish": "git fetch && git pull" }, "dependencies": { "async": "^3", "debuglog": "^1", "event-emitter-enhancer": "latest", "funcs-js": "latest", "node-later": "latest" }, "devDependencies": { "chai": "^4", "eslint": "^8", "js-beautify": "^1", "jsdoc-to-markdown": "^7", "mocha": "^9", "nyc": "^15", "promiscuous": "^0.7", "stylelint": "^13", "stylelint-config-standard": "^22" } }