Skip to content

Commit

Permalink
build: misc. updates to packaging
Browse files Browse the repository at this point in the history
closes #2398
  • Loading branch information
Fishrock123 authored and dougwilson committed Oct 18, 2014
1 parent b766aad commit 7a7f18c
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 28 deletions.
38 changes: 24 additions & 14 deletions .gitignore
@@ -1,16 +1,26 @@
coverage/
.DS_Store
*.seed
# OS X
.DS_Store*
Icon?
._*

# Windows
Thumbs.db
ehthumbs.db
Desktop.ini

# Linux
.directory
*~


# npm
node_modules
*.log
*.csv
*.dat
*.out
*.pid
*.swp
*.swo
*.gz


# Coveralls
coverage

# Benchmarking
benchmarks/graphs
testing
node_modules/
testing
test.js
.idea
10 changes: 0 additions & 10 deletions .npmignore

This file was deleted.

15 changes: 11 additions & 4 deletions package.json
Expand Up @@ -11,6 +11,9 @@
"Jonathan Ong <me@jongleberry.com>",
"Roman Shtylman <shtylman+expressjs@gmail.com"
],
"license": "MIT",
"repository": "strongloop/express",

This comment has been minimized.

Copy link
@ralphtheninja

ralphtheninja Jan 22, 2016

Contributor

👍

"homepage": "http://expressjs.com/",
"keywords": [
"express",
"framework",
Expand All @@ -22,9 +25,6 @@
"app",
"api"
],
"repository": "strongloop/express",
"license": "MIT",
"homepage": "http://expressjs.com/",
"dependencies": {
"basic-auth": "1.0.0",
"connect": "2.27.0",
Expand Down Expand Up @@ -63,8 +63,15 @@
"bin": {
"express": "./bin/express"
},
"files": [
"LICENSE",
"History.md",
"Readme.md",
"index.js",
"bin/",
"lib/"
],
"scripts": {
"prepublish": "npm prune",
"test": "mocha --require test/support/env --reporter dot --check-leaks test/ test/acceptance/",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --require test/support/env --reporter dot --check-leaks test/ test/acceptance/",
"test-tap": "mocha --require test/support/env --reporter tap --check-leaks test/ test/acceptance/",
Expand Down

0 comments on commit 7a7f18c

Please sign in to comment.