UNPKG

mysql-query-placeholders

Version:
64 lines (63 loc) 1.67 kB
{ "name": "mysql-query-placeholders", "version": "0.2.2", "description": "Build prepared statements from named parameters.", "main": "build/mqp.js", "keywords": [ "prepared", "statement", "named", "parameter", "query", "object", "sql", "mysql" ], "scripts": { "test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register '*spec.ts'", "check": "gts check", "clean": "gts clean", "compile": "tsc", "fix": "gts fix", "prepare": "npm run clean && npm run compile", "pretest": "npm run compile", "posttest": "npm run check", "dev": "ts-node-dev -T --respawn node_modules/mocha/bin/mocha *.spec.ts" }, "repository": { "type": "git", "url": "git+https://github.com/ricardo-dlc/mysql-query-placeholders.git" }, "author": "ricardo-dlc", "license": "ISC", "bugs": { "url": "https://github.com/ricardo-dlc/mysql-query-placeholders/issues" }, "homepage": "https://github.com/ricardo-dlc/mysql-query-placeholders#readme", "devDependencies": { "@commitlint/cli": "^9.1.2", "@commitlint/config-conventional": "^10.0.0", "@types/chai": "^4.2.13", "@types/mocha": "^8.0.3", "@types/node": "^13.13.15", "chai": "^4.2.0", "gts": "^3.0.1", "husky": "^4.2.5", "mocha": "^8.1.3", "ts-node": "^9.0.0", "ts-node-dev": "^1.0.0-pre.56", "typescript": "^4.0.3" }, "husky": { "hooks": { "pre-commit": "npm run check", "commit-msg": "commitlint -E HUSKY_GIT_PARAMS" } }, "commitlint": { "extends": [ "@commitlint/config-conventional" ] }, "files": ["build/"] }