-
-
Notifications
You must be signed in to change notification settings - Fork 21.2k
Add CONTRIBUTING.md and CODE_OF_CONDUCT.md files #6604
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
d486910
3f9c243
feca68d
732c02f
754a44f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please keep the PR focused, this change is unnecessary There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It would be better if you created a new PR, since this change could block the goal of the current one, which is to bring that file back. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @RaginiSharma01 This change is still here. Please remove the changes you made here, they don't belong in this PR |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,16 +4,40 @@ | |
"version": "5.1.0", | ||
"author": "TJ Holowaychuk <[email protected]>", | ||
"contributors": [ | ||
"Aaron Heckmann <[email protected]>", | ||
"Ciaran Jessup <[email protected]>", | ||
"Douglas Christopher Wilson <[email protected]>", | ||
"Guillermo Rauch <[email protected]>", | ||
"Jonathan Ong <[email protected]>", | ||
"Roman Shtylman <[email protected]>", | ||
"Young Jae Sim <[email protected]>" | ||
{ | ||
"name": "Aaron Heckmann", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Ciaran Jessup", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Douglas Christopher Wilson", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Guillermo Rauch", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Jonathan Ong", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Roman Shtylman", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Young Jae Sim", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"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" | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The changes here are already being handled by #6601