Skip to content

Commit 7bafe0c

Browse files
committed
..
1 parent 028381a commit 7bafe0c

File tree

4 files changed

+50
-31
lines changed

4 files changed

+50
-31
lines changed

.gitignore

Lines changed: 40 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,41 @@
1-
.idea
2-
*.iml
3-
npm-debug.log
4-
dump.rdb
5-
node_modules
6-
results.tap
7-
results.xml
8-
npm-shrinkwrap.json
9-
config.json
10-
.DS_Store
11-
*/.DS_Store
12-
*/*/.DS_Store
13-
._*
14-
*/._*
15-
*/*/._*
16-
coverage.*
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
6+
# Runtime data
7+
pids
8+
*.pid
9+
*.seed
10+
11+
# Directory for instrumented libs generated by jscoverage/JSCover
1712
lib-cov
18-
complexity.md
19-
coverage/
13+
14+
# Coverage directory used by tools like istanbul
15+
coverage
16+
17+
# nyc test coverage
18+
.nyc_output
19+
20+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
21+
.grunt
22+
23+
# node-waf configuration
24+
.lock-wscript
25+
26+
# Compiled binary addons (http://nodejs.org/api/addons.html)
27+
build/Release
28+
29+
# Dependency directories
30+
node_modules
31+
jspm_packages
32+
33+
# Optional npm cache directory
34+
.npm
35+
36+
# npm lock
37+
package-lock.json
38+
yarn.lock
39+
40+
# Optional REPL history
41+
.node_repl_history

.travis.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,16 @@ language: node_js
22
sudo: false
33

44
node_js:
5-
- "4"
6-
- "5"
7-
- "6"
5+
- "8"
6+
- "9"
87

98
before_install:
109

1110
before_script:
12-
- mkdir -p gnatsd
13-
- wget https://github.com/nats-io/gnatsd/releases/download/v0.7.2/gnatsd-v0.7.2-linux-amd64.tar.gz -qO - | tar -zxvC gnatsd/
11+
# install nats
12+
- wget https://github.com/nats-io/gnatsd/releases/download/v1.0.4/gnatsd-v1.0.4-linux-amd64.zip -qO tmp.zip
13+
- unzip tmp.zip
14+
- mv gnatsd-v1.0.4-linux-amd64 gnatsd
1415

1516
after_success:
1617
- npm run coveralls

.vscode/settings.json

Lines changed: 0 additions & 3 deletions
This file was deleted.

package.json

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"name": "hapi-hemera",
3-
"description": "Hemera micro-services plugin for hapi",
3+
"description": "Hemera micro-services plugin for Hapi",
44
"version": "1.0.1",
55
"repository": "git://github.com/hemerajs/hapi-hemera",
66
"main": "lib/index.js",
7-
"autor": "Russlan Akiev (http://github.com/aruss)",
7+
"author": "Dustin Deus (https://github.com/StarpTech)",
88
"keywords": [
99
"hapi",
1010
"plugin",
@@ -28,7 +28,6 @@
2828
"catbox-memory": "^3.1.1",
2929
"code": "^5.1.2",
3030
"coveralls": "^3.0.0",
31-
"docco": "^0.8.0",
3231
"eslint": "^4.9.0",
3332
"eslint-config-prettier": "^2.9.0",
3433
"eslint-config-standard": "^10.2.1",
@@ -44,15 +43,15 @@
4443
"joi": "^13.0.2",
4544
"mocha": "^4.0.1",
4645
"mocha-lcov-reporter": "^1.3.0",
46+
"np": "^2.18.3",
4747
"prettier": "^1.9.2",
4848
"sinon": "4.1.3"
4949
},
5050
"scripts": {
51-
"annotate": "docco lib/index.js -o docs/",
5251
"test": "mocha --exit -t 5000 --recursive",
5352
"coverage": "istanbul cover node_modules/mocha/bin/_mocha -- -R spec -t 5000 --recursive",
5453
"coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report text-lcov -- -R spec | node ./node_modules/coveralls/bin/coveralls.js",
55-
"lint": "eslint --ext .js lib test examples benchmark",
54+
"lint": "eslint --ext .js lib test",
5655
"patch": "np patch --yolo",
5756
"minor": "np minor --yolo",
5857
"major": "np major --yolo"

0 commit comments

Comments
 (0)