UNPKG

@slsplus/database

Version:
99 lines (98 loc) 2.87 kB
{ "name": "@slsplus/database", "version": "0.0.5", "description": "Serverless Database Tool", "main": "./dist/index.js", "publishConfig": { "access": "public" }, "scripts": { "test": "ts-node ./dockest.start.ts", "test:local": "jest", "docker:up": "docker-compose up -d", "docker:down": "docker-compose stop && docker-compose rm -f", "build": "tsc", "format": "npm run lint && npm run prettier", "commitlint": "commitlint -f HEAD@{15}", "lint": "eslint --ext .js,.ts,.tsx .", "lint:fix": "eslint --fix --ext .js,.ts,.tsx .", "prettier": "prettier --check '**/*.{css,html,js,ts,json,md,yaml,yml}'", "prettier:fix": "prettier --write '**/*.{css,html,js,ts,json,md,yaml,yml}'", "release": "semantic-release", "release-local": "node -r dotenv/config node_modules/semantic-release/bin/semantic-release --no-ci --dry-run", "check-dependencies": "npx npm-check --skip-unused --update" }, "engines": { "node": ">=10" }, "husky": { "hooks": { "pre-commit": "ygsec && lint-staged", "commit-msg": "commitlint -E HUSKY_GIT_PARAMS", "pre-push": "ygsec && npm run lint:fix && npm run prettier:fix" } }, "lint-staged": { "**/*.{js,ts,tsx}": [ "npm run lint:fix", "git add ." ], "**/*.{css,html,js,ts,json,md,yaml,yml}": [ "npm run prettier:fix", "git add ." ] }, "keywords": [ "database", "serverless", "slsplus", "mysql", "postgres" ], "author": "yugasun", "license": "MIT", "dependencies": { "@ygkit/object": "^0.0.3", "tslib": "^2.0.1" }, "peerDependenciesMeta": { "mysql2": { "optional": true } }, "devDependencies": { "@commitlint/cli": "^8.3.5", "@commitlint/config-conventional": "^8.3.4", "@semantic-release/changelog": "^5.0.0", "@semantic-release/commit-analyzer": "^8.0.1", "@semantic-release/git": "^9.0.0", "@semantic-release/npm": "^7.0.4", "@semantic-release/release-notes-generator": "^9.0.1", "@types/jest": "^26.0.13", "@typescript-eslint/eslint-plugin": "^4.1.0", "@typescript-eslint/parser": "^4.1.0", "@ygkit/secure": "^0.0.3", "dockest": "^2.1.0", "dotenv": "^8.2.0", "eslint": "^6.8.0", "eslint-config-prettier": "^6.10.0", "eslint-plugin-prettier": "^3.1.2", "husky": "^4.2.3", "jest": "^26.4.2", "lint-staged": "^10.0.8", "prettier": "^1.19.1", "semantic-release": "^17.0.4", "ts-jest": "^26.3.0", "ts-node": "^9.1.1", "typescript": "^4.0.2", "typescript-json-schema": "^0.43.0" }, "repository": { "type": "git", "url": "git+https://github.com/serverless-plus/database.git" }, "bugs": { "url": "https://github.com/serverless-plus/database/issues" }, "homepage": "https://github.com/serverless-plus/database#readme" }