Skip to content

Commit

Permalink
Merge pull request #24 from Spy-Seth/upgrade-dependencies
Browse files Browse the repository at this point in the history
Upgrade dependencies
  • Loading branch information
armandabric committed Feb 25, 2016
2 parents bc6c6ab + 8e36748 commit 9fbac3f
Show file tree
Hide file tree
Showing 8 changed files with 25 additions and 20 deletions.
4 changes: 1 addition & 3 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@
"no-dupe-keys": 2,
"no-duplicate-case": 2,
"no-empty-character-class": 2,
"no-empty-label": 2,
"no-eval": 2,
"no-ex-assign": 2,
"no-extend-native": 2,
Expand Down Expand Up @@ -103,15 +102,14 @@
"quotes": [2, "single", "avoid-escape"],
"radix": 2,
"semi": [2, "always"],
"space-after-keywords": [2, "always"],
"keyword-spacing": 2,
"space-before-blocks": [2, "always"],
"space-before-function-paren": [2, {
"anonymous": "always",
"named": "never"
}],
"space-in-parens": [2, "never"],
"space-infix-ops": 2,
"space-return-throw-case": 2,
"space-unary-ops": [2, { "words": true, "nonwords": false }],
"spaced-comment": [2, "always", { "markers": ["global", "globals", "eslint", "eslint-disable", "*package", "!", ","] }],
"use-isnan": 2,
Expand Down
13 changes: 10 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,16 @@ language: node_js
sudo: false

node_js:
- "iojs-v2.4.0"
- "iojs-v3.1.0"
- "iojs-v3.2.0"
- "5.7"
- "5.6"
- "5.5"
- "5.4"
- "5.3"
- "5.2"
- "5.1"
- "5.0"
- "4.3"
- "4.2"
- "0.12"

script:
Expand Down
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,15 @@
"author": "Armand Abric <armand@forgebinaire.net>",
"license": "MIT",
"devDependencies": {
"chai": "~3.2.0",
"coveralls": "~2.11.4",
"eslint": "~1.3.1",
"istanbul": "~0.3.19",
"mocha": "~2.3.0",
"sinon": "~1.16.1",
"chai": "~3.5.0",
"coveralls": "~2.11.6",
"eslint": "~2.2.0",
"istanbul": "~0.4.2",
"mocha": "~2.4.5",
"sinon": "~1.17.3",
"sinon-chai": "~2.8.0"
},
"dependencies": {
"lodash": "~3.10.1"
"lodash": "~4.5.1"
}
}
2 changes: 1 addition & 1 deletion src/CallCollection.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict';

var each = require('lodash/collection/each');
var each = require('lodash/each');
var Call = require('./Call');

/**
Expand Down
2 changes: 1 addition & 1 deletion src/ContainerFactory.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict';

var each = require('lodash/collection/each');
var each = require('lodash/each');
var Call = require('./Call');
var CallCollection = require('./CallCollection');
var Container = require('./Container');
Expand Down
2 changes: 1 addition & 1 deletion src/FunctionArgumentCollection.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict';

var each = require('lodash/collection/each');
var each = require('lodash/each');
var FunctionArgument = require('./FunctionArgument');

/**
Expand Down
4 changes: 2 additions & 2 deletions src/ParameterCollection.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'use strict';

var each = require('lodash/collection/each');
var find = require('lodash/collection/find');
var each = require('lodash/each');
var find = require('lodash/find');
var Parameter = require('./Parameter');

/**
Expand Down
4 changes: 2 additions & 2 deletions src/ServiceDefinitionCollection.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'use strict';

var each = require('lodash/collection/each');
var find = require('lodash/collection/find');
var each = require('lodash/each');
var find = require('lodash/find');
var ServiceDefinition = require('./ServiceDefinition');
var ObjectHelper = require('./ObjectHelper');

Expand Down

0 comments on commit 9fbac3f

Please sign in to comment.