mirror of
https://github.com/zebrajr/express.git
synced 2025-12-06 12:19:51 +01:00
parent
b766aad112
commit
7a7f18c20b
38
.gitignore
vendored
38
.gitignore
vendored
|
|
@ -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
|
|
||||||
|
|
|
||||||
10
.npmignore
10
.npmignore
|
|
@ -1,10 +0,0 @@
|
||||||
.git*
|
|
||||||
benchmarks/
|
|
||||||
coverage/
|
|
||||||
docs/
|
|
||||||
examples/
|
|
||||||
support/
|
|
||||||
test/
|
|
||||||
testing.js
|
|
||||||
.DS_Store
|
|
||||||
.travis.yml
|
|
||||||
15
package.json
15
package.json
|
|
@ -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/",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user