build: misc. updates to packaging

closes #2398
This commit is contained in:
Fishrock123 2014-10-13 13:41:45 -04:00 committed by Douglas Christopher Wilson
parent b766aad112
commit 7a7f18c20b
3 changed files with 35 additions and 28 deletions

38
.gitignore vendored
View File

@ -1,16 +1,26 @@
coverage/ # OS X
.DS_Store .DS_Store*
*.seed Icon?
._*
# Windows
Thumbs.db
ehthumbs.db
Desktop.ini
# Linux
.directory
*~
# npm
node_modules
*.log *.log
*.csv *.gz
*.dat
*.out
*.pid # Coveralls
*.swp coverage
*.swo
# Benchmarking
benchmarks/graphs benchmarks/graphs
testing
node_modules/
testing
test.js
.idea

View File

@ -1,10 +0,0 @@
.git*
benchmarks/
coverage/
docs/
examples/
support/
test/
testing.js
.DS_Store
.travis.yml

View File

@ -11,6 +11,9 @@
"Jonathan Ong <me@jongleberry.com>", "Jonathan Ong <me@jongleberry.com>",
"Roman Shtylman <shtylman+expressjs@gmail.com" "Roman Shtylman <shtylman+expressjs@gmail.com"
], ],
"license": "MIT",
"repository": "strongloop/express",
"homepage": "http://expressjs.com/",
"keywords": [ "keywords": [
"express", "express",
"framework", "framework",
@ -22,9 +25,6 @@
"app", "app",
"api" "api"
], ],
"repository": "strongloop/express",
"license": "MIT",
"homepage": "http://expressjs.com/",
"dependencies": { "dependencies": {
"basic-auth": "1.0.0", "basic-auth": "1.0.0",
"connect": "2.27.0", "connect": "2.27.0",
@ -63,8 +63,15 @@
"bin": { "bin": {
"express": "./bin/express" "express": "./bin/express"
}, },
"files": [
"LICENSE",
"History.md",
"Readme.md",
"index.js",
"bin/",
"lib/"
],
"scripts": { "scripts": {
"prepublish": "npm prune",
"test": "mocha --require test/support/env --reporter dot --check-leaks test/ test/acceptance/", "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-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/", "test-tap": "mocha --require test/support/env --reporter tap --check-leaks test/ test/acceptance/",