Skip to content

Commit 9fbac3f

Browse files
committed
Merge pull request #24 from Spy-Seth/upgrade-dependencies
Upgrade dependencies
2 parents bc6c6ab + 8e36748 commit 9fbac3f

File tree

8 files changed

+25
-20
lines changed

8 files changed

+25
-20
lines changed

.eslintrc

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@
4646
"no-dupe-keys": 2,
4747
"no-duplicate-case": 2,
4848
"no-empty-character-class": 2,
49-
"no-empty-label": 2,
5049
"no-eval": 2,
5150
"no-ex-assign": 2,
5251
"no-extend-native": 2,
@@ -103,15 +102,14 @@
103102
"quotes": [2, "single", "avoid-escape"],
104103
"radix": 2,
105104
"semi": [2, "always"],
106-
"space-after-keywords": [2, "always"],
105+
"keyword-spacing": 2,
107106
"space-before-blocks": [2, "always"],
108107
"space-before-function-paren": [2, {
109108
"anonymous": "always",
110109
"named": "never"
111110
}],
112111
"space-in-parens": [2, "never"],
113112
"space-infix-ops": 2,
114-
"space-return-throw-case": 2,
115113
"space-unary-ops": [2, { "words": true, "nonwords": false }],
116114
"spaced-comment": [2, "always", { "markers": ["global", "globals", "eslint", "eslint-disable", "*package", "!", ","] }],
117115
"use-isnan": 2,

.travis.yml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,16 @@ language: node_js
33
sudo: false
44

55
node_js:
6-
- "iojs-v2.4.0"
7-
- "iojs-v3.1.0"
8-
- "iojs-v3.2.0"
6+
- "5.7"
7+
- "5.6"
8+
- "5.5"
9+
- "5.4"
10+
- "5.3"
11+
- "5.2"
12+
- "5.1"
13+
- "5.0"
14+
- "4.3"
15+
- "4.2"
916
- "0.12"
1017

1118
script:

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@
2525
"author": "Armand Abric <[email protected]>",
2626
"license": "MIT",
2727
"devDependencies": {
28-
"chai": "~3.2.0",
29-
"coveralls": "~2.11.4",
30-
"eslint": "~1.3.1",
31-
"istanbul": "~0.3.19",
32-
"mocha": "~2.3.0",
33-
"sinon": "~1.16.1",
28+
"chai": "~3.5.0",
29+
"coveralls": "~2.11.6",
30+
"eslint": "~2.2.0",
31+
"istanbul": "~0.4.2",
32+
"mocha": "~2.4.5",
33+
"sinon": "~1.17.3",
3434
"sinon-chai": "~2.8.0"
3535
},
3636
"dependencies": {
37-
"lodash": "~3.10.1"
37+
"lodash": "~4.5.1"
3838
}
3939
}

src/CallCollection.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'use strict';
22

3-
var each = require('lodash/collection/each');
3+
var each = require('lodash/each');
44
var Call = require('./Call');
55

66
/**

src/ContainerFactory.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'use strict';
22

3-
var each = require('lodash/collection/each');
3+
var each = require('lodash/each');
44
var Call = require('./Call');
55
var CallCollection = require('./CallCollection');
66
var Container = require('./Container');

src/FunctionArgumentCollection.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'use strict';
22

3-
var each = require('lodash/collection/each');
3+
var each = require('lodash/each');
44
var FunctionArgument = require('./FunctionArgument');
55

66
/**

src/ParameterCollection.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
'use strict';
22

3-
var each = require('lodash/collection/each');
4-
var find = require('lodash/collection/find');
3+
var each = require('lodash/each');
4+
var find = require('lodash/find');
55
var Parameter = require('./Parameter');
66

77
/**

src/ServiceDefinitionCollection.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
'use strict';
22

3-
var each = require('lodash/collection/each');
4-
var find = require('lodash/collection/find');
3+
var each = require('lodash/each');
4+
var find = require('lodash/find');
55
var ServiceDefinition = require('./ServiceDefinition');
66
var ObjectHelper = require('./ObjectHelper');
77

0 commit comments

Comments
 (0)