Lint fixes and dependency updates

This commit is contained in:
2018-06-13 10:54:42 +02:00
parent eda6f90cee
commit a356c64343
6 changed files with 24 additions and 2803 deletions
+1 -1
View File
@@ -2,8 +2,8 @@ language: node_js
node_js: node_js:
- 4 - 4
- 6 - 6
- 7
- 8 - 8
- 10
script: "npm run-script cover" script: "npm run-script cover"
after_script: "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js" after_script: "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
notifications: notifications:
-2789
View File
File diff suppressed because it is too large Load Diff
+5 -5
View File
@@ -1,6 +1,6 @@
{ {
"name": "larvitsmpp", "name": "larvitsmpp",
"version": "0.3.3", "version": "0.3.4",
"author": { "author": {
"name": "Mikael 'Lilleman' Göransson", "name": "Mikael 'Lilleman' Göransson",
"email": "lilleman@larvit.se", "email": "lilleman@larvit.se",
@@ -14,15 +14,15 @@
"moment": "^2.18.1", "moment": "^2.18.1",
"utils-merge": "^1.0.0", "utils-merge": "^1.0.0",
"uuid": "^3.2.1", "uuid": "^3.2.1",
"winston": "^2.3.1" "winston": "^3.0.0"
}, },
"description": "Simplified SMPP implementation", "description": "Simplified SMPP implementation",
"devDependencies": { "devDependencies": {
"coveralls": "^2.11.9", "coveralls": "^3.0.1",
"eslint": "^4.1.0", "eslint": "^4.1.0",
"istanbul": "^0.4.3", "istanbul": "^0.4.3",
"mocha": "^3.4.2", "mocha": "^5.2.0",
"mocha-eslint": "^3.0.1", "mocha-eslint": "^4.1.0",
"portfinder": "^1.0.3" "portfinder": "^1.0.3"
}, },
"keywords": [ "keywords": [
View File
+10
View File
@@ -0,0 +1,10 @@
'use strict';
describe('the end', function () {
it('should close down', function (done) {
setTimeout(function () {
process.exit(0);
}, 1000);
done();
});
});