| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- {
- "name": "@e22m4u/js-repository",
- "version": "0.0.42",
- "description": "Модуль для работы с базами данных для Node.js",
- "type": "module",
- "main": "src/index.js",
- "engines": {
- "node": ">=14"
- },
- "scripts": {
- "lint": "tsc && eslint .",
- "lint:fix": "tsc && eslint . --fix",
- "format": "prettier --write \"./src/**/*.js\"",
- "test": "npm run lint && c8 --reporter=text-summary mocha",
- "test:coverage": "npm run lint && c8 --reporter=text mocha",
- "build:doc": "tsc && npx typedoc",
- "prepare": "npx husky install"
- },
- "repository": {
- "type": "git",
- "url": "https://github.com/e22m4u/js-repository.git"
- },
- "keywords": [
- "Repository",
- "ORM",
- "ODM",
- "Database",
- "Datasource",
- "Relation",
- "Inclusion",
- "Memory"
- ],
- "author": "e22m4u <e22m4u@gmail.com>",
- "license": "MIT",
- "homepage": "https://github.com/e22m4u/js-repository",
- "dependencies": {
- "@e22m4u/js-format": "0.0.7",
- "@e22m4u/js-service": "0.0.7"
- },
- "devDependencies": {
- "@commitlint/cli": "^18.4.2",
- "@commitlint/config-conventional": "^18.4.2",
- "c8": "^8.0.1",
- "chai": "^4.3.10",
- "chai-as-promised": "^7.1.1",
- "chai-spies": "^1.1.0",
- "chai-subset": "^1.6.0",
- "eslint": "^8.54.0",
- "eslint-config-prettier": "^9.0.0",
- "eslint-plugin-chai-expect": "^3.0.0",
- "eslint-plugin-jsdoc": "^46.9.0",
- "eslint-plugin-mocha": "^10.2.0",
- "husky": "^8.0.3",
- "mocha": "^10.2.0",
- "prettier": "^3.1.0",
- "typedoc": "^0.25.4",
- "typescript": "^5.2.2"
- }
- }
|