UNPKG

@nestjs/config

Version:

Nest - modern, fast, powerful node.js web framework (@config)

75 lines (74 loc) 2.14 kB
{ "name": "@nestjs/config", "version": "2.0.0", "description": "Nest - modern, fast, powerful node.js web framework (@config)", "author": "Kamil Mysliwiec", "license": "MIT", "url": "https://github.com/nestjs/config#readme", "scripts": { "build": "rimraf -rf dist && tsc -p tsconfig.json", "format": "prettier --write \"{lib,test}/**/*.ts\"", "lint": "eslint 'lib/**/*.ts' --fix", "prepublish:npm": "npm run build", "publish:npm": "npm publish --access public", "prepublish:next": "npm run build", "publish:next": "npm publish --access public --tag next", "test:integration": "jest --config ./tests/jest-e2e.json --runInBand", "prerelease": "npm run build", "release": "release-it" }, "dependencies": { "dotenv": "16.0.0", "dotenv-expand": "8.0.2", "lodash": "4.17.21", "uuid": "8.3.2" }, "devDependencies": { "@commitlint/cli": "16.2.3", "@commitlint/config-angular": "16.2.3", "@nestjs/common": "8.4.1", "@nestjs/core": "8.4.1", "@nestjs/platform-express": "8.4.1", "@nestjs/testing": "8.4.1", "@types/jest": "27.4.1", "@types/lodash": "4.14.180", "@types/node": "16.11.26", "@types/uuid": "8.3.4", "@typescript-eslint/eslint-plugin": "5.15.0", "@typescript-eslint/parser": "5.15.0", "eslint": "8.11.0", "eslint-config-prettier": "8.5.0", "eslint-plugin-import": "2.25.4", "husky": "7.0.4", "jest": "27.5.1", "joi": "17.6.0", "lint-staged": "12.3.6", "prettier": "2.6.0", "reflect-metadata": "0.1.13", "release-it": "14.12.5", "rimraf": "3.0.2", "rxjs": "7.5.5", "ts-jest": "27.1.3", "typescript": "4.6.2" }, "peerDependencies": { "@nestjs/common": "^7.0.0 || ^8.0.0", "reflect-metadata": "^0.1.13", "rxjs": "^6.0.0 || ^7.2.0" }, "lint-staged": { "*.ts": [ "prettier --write" ] }, "husky": { "hooks": { "commit-msg": "commitlint -c .commitlintrc.json -E HUSKY_GIT_PARAMS", "pre-commit": "lint-staged" } }, "repository": { "type": "git", "url": "https://github.com/nestjs/config" } }