UNPKG

sql-dao

Version:

database access objects for sql databases

54 lines (53 loc) 1.12 kB
{ "name": "sql-dao", "version": "1.4.1", "description": "database access objects for sql databases", "main": "index.js", "scripts": { "start": "node index.js", "test": "node test.js", "cover": "node node_modules/nyc/bin/nyc.js --reporter=html npm test", "format": "node node_modules/standard/bin/cmd.js --fix", "prerelease": "npm test", "release": "standard-version", "postrelease": "git push --follow-tags origin master && npm publish" }, "repository": { "type": "git", "url": "https://github.com/loge5/node-sql-dao.git" }, "keywords": [ "dao", "doa", "sql", "database", "access", "objects", "mysql" ], "author": "Rolf Loges", "license": "MIT", "dependencies": { "commander": "^6.2.1", "mysql": "^2.16.0" }, "devDependencies": { "chai": "^4.3.6", "mocha": "^9.2.2", "nyc": "^15.1.0", "standard": "^16.0.4", "standard-version": "^9.3.2" }, "standard": { "ignore": [ "config" ] }, "nyc": { "exclude": [ "**/*.spec.js", "config", "test.js" ] } }