mirror of
https://github.com/brianc/node-postgres.git
synced 2025-12-08 20:16:25 +00:00
Bumps [mocha](https://github.com/mochajs/mocha) and [@types/mocha](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/mocha). These dependencies needed to be updated together. Updates `mocha` from 3.4.2 to 10.5.2 - [Release notes](https://github.com/mochajs/mocha/releases) - [Changelog](https://github.com/mochajs/mocha/blob/main/CHANGELOG.md) - [Commits](https://github.com/mochajs/mocha/compare/v3.4.2...v10.5.2) Updates `@types/mocha` from 5.2.7 to 10.0.7 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/mocha) --- updated-dependencies: - dependency-name: mocha dependency-type: direct:development update-type: version-update:semver-major - dependency-name: "@types/mocha" dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
35 lines
825 B
JSON
35 lines
825 B
JSON
{
|
|
"name": "pg-protocol",
|
|
"version": "1.6.1",
|
|
"description": "The postgres client/server binary protocol, implemented in TypeScript",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/chai": "^4.2.7",
|
|
"@types/mocha": "^10.0.7",
|
|
"@types/node": "^12.12.21",
|
|
"chai": "^4.2.0",
|
|
"chunky": "^0.0.0",
|
|
"mocha": "^10.5.2",
|
|
"ts-node": "^8.5.4",
|
|
"typescript": "^4.0.3"
|
|
},
|
|
"scripts": {
|
|
"test": "mocha dist/**/*.test.js",
|
|
"build": "tsc",
|
|
"build:watch": "tsc --watch",
|
|
"prepublish": "yarn build",
|
|
"pretest": "yarn build"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/brianc/node-postgres.git",
|
|
"directory": "packages/pg-protocol"
|
|
},
|
|
"files": [
|
|
"/dist/*{js,ts,map}",
|
|
"/src"
|
|
]
|
|
}
|