UNPKG

@typegoose/typegoose

Version:

Define Mongoose models using TypeScript classes

101 lines (100 loc) 2.87 kB
{ "name": "@typegoose/typegoose", "version": "12.0.0", "description": "Define Mongoose models using TypeScript classes", "main": "lib/typegoose.js", "types": "lib/typegoose.d.ts", "engines": { "node": ">=16.20.1" }, "files": [ "lib/**/*.js", "lib/**/*.d.ts" ], "scripts": { "build": "tsc -p tsconfig.build.json", "build:tests": "tsc -p tsconfig.buildTests.json", "lint": "eslint -c ./.eslintrc.js \"./**/*.{js,ts}\"", "test": "jest", "test:watch": "jest --watchAll", "test:coverage": "jest --collectCoverage", "test:watchCoverage": "jest --collectCoverage --watchAll", "test:types": "jest -c jest.config.tsd.json", "watch": "tsc -w -p tsconfig.buildTests.json", "clean": "rimraf lib .tsbuildinfo coverage doc build", "prepare": "husky install", "website": "yarn --cwd website/ run start" }, "repository": { "type": "git", "url": "git+https://github.com/typegoose/typegoose.git" }, "author": "Akos Szokodi <akos@codingsans.com> (http://codingsans.com)", "contributors": [ "Ben305", "hasezoey <hasezoey@gmail.com>" ], "license": "MIT", "peerDependencies": { "mongoose": "~8.0.1" }, "devDependencies": { "@commitlint/cli": "^17.7.2", "@commitlint/config-conventional": "^17.7.0", "@deepkit/core": "1.0.1-alpha.58", "@deepkit/type": "1.0.1-alpha.58", "@semantic-release/changelog": "^6.0.3", "@semantic-release/commit-analyzer": "^9.0.2", "@semantic-release/git": "^10.0.1", "@semantic-release/github": "^8.1.0", "@semantic-release/npm": "^9.0.2", "@semantic-release/release-notes-generator": "^10.0.3", "@tsd/typescript": "~5.2.2", "@types/jest": "^29.5.10", "@types/lodash": "^4.14.202", "@types/node": "~16.11.7", "@types/semver": "^7.5.6", "@typescript-eslint/eslint-plugin": "^6.12.0", "@typescript-eslint/parser": "^6.12.0", "class-transformer": "0.5.1", "commitlint": "^17.7.2", "eslint": "^8.54.0", "eslint-config-prettier": "^9.0.0", "eslint-plugin-prettier": "^5.0.1", "husky": "^8.0.3", "jest": "^29.7.0", "jest-runner-tsd": "^5.0.0", "lint-staged": "^14.0.1", "mongodb-memory-server": "^9.1.1", "mongoose": "~8.0.1", "prettier": "^3.1.0", "rimraf": "^5.0.5", "semantic-release": "^19.0.5", "ts-jest": "^29.1.1", "typescript": "~5.2.2" }, "dependencies": { "lodash": "^4.17.20", "loglevel": "^1.8.1", "reflect-metadata": "^0.1.13", "semver": "^7.5.4", "tslib": "^2.6.2" }, "publishConfig": { "access": "public" }, "keywords": [ "typegoose", "mongoose", "orm", "mongodb", "class", "model", "schema", "odm" ], "bugs": { "url": "https://github.com/typegoose/typegoose/issues" }, "homepage": "https://typegoose.github.io/typegoose/" }