diff --git a/Readme.md b/Readme.md index d7e99de5c15..de8b64b4378 100644 --- a/Readme.md +++ b/Readme.md @@ -2,8 +2,7 @@ **Fast, unopinionated, minimalist web framework for [Node.js](https://nodejs.org).** -**This project has a [Code of Conduct][].** - +**This project has a [Code of Conduct] ## Table of contents - [Table of contents](#table-of-contents) @@ -148,7 +147,9 @@ The Express.js project welcomes all constructive contributions. Contributions ta from code for bug fixes and enhancements, to additions and fixes to documentation, additional tests, triaging incoming pull requests and issues, and more! -See the [Contributing Guide](https://github.com/expressjs/.github/blob/HEAD/CONTRIBUTING.yml) for more technical details on contributing. +See the [Contributing Guide](./Contributing.md) for more technical details on contributing. + +See the [Contributing Guide] for more technical details on contributing. ### Security Issues @@ -269,4 +270,5 @@ The original author of Express is [TJ Holowaychuk](https://github.com/tj) [npm-version-image]: https://badgen.net/npm/v/express [ossf-scorecard-badge]: https://api.scorecard.dev/projects/github.com/expressjs/express/badge [ossf-scorecard-visualizer]: https://ossf.github.io/scorecard-visualizer/#/projects/github.com/expressjs/express -[Code of Conduct]: https://github.com/expressjs/express/blob/master/Code-Of-Conduct.md +[Code of Conduct]: https://github.com/expressjs/.github/blob/HEAD/CODE_OF_CONDUCT.md +[Contributing Guide]: https://github.com/expressjs/express/blob/master/Contributing.md diff --git a/package.json b/package.json index bdcd25e60fa..6751fe3e022 100644 --- a/package.json +++ b/package.json @@ -4,16 +4,40 @@ "version": "5.1.0", "author": "TJ Holowaychuk ", "contributors": [ - "Aaron Heckmann ", - "Ciaran Jessup ", - "Douglas Christopher Wilson ", - "Guillermo Rauch ", - "Jonathan Ong ", - "Roman Shtylman ", - "Young Jae Sim " + { + "name": "Aaron Heckmann", + "email": "aaron.heckmann+github@gmail.com" + }, + { + "name": "Ciaran Jessup", + "email": "ciaranj@gmail.com" + }, + { + "name": "Douglas Christopher Wilson", + "email": "doug@somethingdoug.com" + }, + { + "name": "Guillermo Rauch", + "email": "rauchg@gmail.com" + }, + { + "name": "Jonathan Ong", + "email": "me@jongleberry.com" + }, + { + "name": "Roman Shtylman", + "email": "shtylman+expressjs@gmail.com" + }, + { + "name": "Young Jae Sim", + "email": "hanul@hanul.me" + } ], "license": "MIT", - "repository": "expressjs/express", + "repository": { + "type": "git", + "url": "git+https://github.com/expressjs/express.git" + }, "homepage": "https://expressjs.com/", "funding": { "type": "opencollective", @@ -94,5 +118,15 @@ "test-ci": "nyc --exclude examples --exclude test --exclude benchmarks --reporter=lcovonly --reporter=text npm test", "test-cov": "nyc --exclude examples --exclude test --exclude benchmarks --reporter=html --reporter=text npm test", "test-tap": "mocha --require test/support/env --reporter tap --check-leaks test/ test/acceptance/" + }, + "main": "index.js", + "directories": { + "example": "examples", + "lib": "lib", + "test": "test" + }, + "type": "commonjs", + "bugs": { + "url": "https://github.com/expressjs/express/issues" } }