Skip to content
This repository has been archived by the owner on Aug 19, 2022. It is now read-only.

Commit

Permalink
Created package hapi-auth-udaru.
Browse files Browse the repository at this point in the history
  • Loading branch information
Shogun committed Mar 30, 2018
1 parent ef1f278 commit 84a35bc
Show file tree
Hide file tree
Showing 53 changed files with 11,669 additions and 8 deletions.
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
language: node_js

node_js:
- '6'
- '7'
- '8.9'

dist: trusty
sudo: required
Expand Down
7 changes: 6 additions & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,10 @@
"packages": [
"packages/*"
],
"version": "independent"
"version": "independent",
"command": {
"run": {
"concurrency": 1
}
}
}
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@
"bugs": {
"url": "https://github.com/nearform/udaru/issues"
},
"bin": "packages/udaru-server/start.js",
"bin": {
"udaru": "packages/udaru-server/start.js"
},
"engines": {
"node": ">=6.0.0"
},
Expand All @@ -43,6 +45,7 @@
"postinstall": "lerna bootstrap",
"doc:lint": "remark .",
"start": "node packages/udaru-server/start.js",
"start-v17": "node packages/hapi-auth-udaru/start.js",
"test": "lerna run test",
"test:commit-check": "npm run doc:lint && npm run lint && npm run depcheck && npm run test",
"swagger-gen": "node scripts/getSwaggerJson.js | swagger-gen -d docs/swagger && node scripts/injectUdaruSwaggerCss.js"
Expand Down
1 change: 1 addition & 0 deletions packages/hapi-auth-udaru/.npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
package-lock=false
21 changes: 21 additions & 0 deletions packages/hapi-auth-udaru/LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2017 nearForm

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

0 comments on commit 84a35bc

Please sign in to comment.