Skip to content
This repository has been archived by the owner on Jan 20, 2024. It is now read-only.

Included blakeembrey/router#router-engine to remove github dependency #14

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ root = true

[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
node_modules
coverage
.DS_Store
.idea
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ notifications:
on_failure: change

node_js:
- "0.10"
- "0.12"
- "4"
- "node"
Expand Down
2 changes: 1 addition & 1 deletion osprey-router.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
var Engine = require('router/engine')
var Engine = require('./router/engine')
var methods = require('methods')
var flatten = require('array-flatten')
var ramlPath = require('raml-path-match')
Expand Down
14 changes: 11 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
{
"name": "osprey-router",
"version": "0.5.1",
"version": "0.5.2",
"description": "Simple middleware-style router for RAML based on router",
"main": "osprey-router.js",
"files": [
"osprey-router.js",
"router/**",
"LICENSE"
],
"scripts": {
Expand All @@ -31,19 +32,26 @@
"homepage": "https://github.com/mulesoft-labs/osprey-router",
"dependencies": {
"array-flatten": "^2.0.0",
"debug": "~2.2.0",
"methods": "^1.1.1",
"nock": "^9.1.6",
"parseurl": "~1.3.1",
"path-to-regexp": "0.1.7",
"raml-path-match": "^2.1.2",
"router": "blakeembrey/router#router-engine",
"setprototypeof": "1.0.0",
"utils-merge": "1.0.0",
"xtend": "^4.0.1"
},
"devDependencies": {
"after": "^0.8.2",
"chai": "^3.5.0",
"es6-promise": "^3.0.2",
"finalhandler": "^0.4.0",
"istanbul": "^0.4.5",
"mocha": "^3.1.0",
"popsicle": "^5.0.0",
"popsicle-server": "^1.0.0",
"standard": "^8.3.0"
"standard": "^8.3.0",
"supertest": "1.1.0"
}
}
Loading