Skip to content

Commit b787895

Browse files
committed
Merge pull request #103 from seegno/support/update-dependencies
Update dependencies
2 parents 8ef0abd + 19dda35 commit b787895

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -49,26 +49,26 @@
4949
},
5050
"devDependencies": {
5151
"abavalidator": "^2.0.1",
52-
"babel-cli": "^6.6.5",
53-
"babel-eslint": "^6.0.2",
52+
"babel-cli": "^6.7.7",
53+
"babel-eslint": "^6.0.3",
5454
"babel-plugin-add-module-exports": "^0.1.2",
5555
"babel-preset-es2015-node4": "^2.1.0",
5656
"babel-register": "^6.7.2",
5757
"bignumber.js": "^2.3.0",
5858
"creditcard": "^0.1.2",
59-
"eslint": "^2.7.0",
59+
"eslint": "^2.8.0",
6060
"eslint-config-seegno": "^4.0.0",
6161
"eslint-plugin-babel": "^3.0.0",
6262
"eslint-plugin-sort-class-members": "^1.0.1",
63-
"google-libphonenumber": "^1.0.16",
63+
"google-libphonenumber": "^1.0.18",
6464
"iban": "0.0.6",
6565
"isoc": "0.0.1",
6666
"isparta": "^4.0.0",
67-
"jscs": "^2.11.0",
67+
"jscs": "^3.0.3",
6868
"jscs-config-seegno": "^2.0.0",
6969
"mocha": "^2.3.4",
70-
"moment": "^2.12.0",
71-
"should": "^8.3.0",
70+
"moment": "^2.13.0",
71+
"should": "^8.3.1",
7272
"sinon": "^1.15.4",
7373
"tin-validator": "^1.0.0",
7474
"uk-modulus-checking": "0.0.2",

src/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ import NullOrDate from './asserts/null-or-date-assert.js';
2828
import NullOrString from './asserts/null-or-string-assert.js';
2929
import Phone from './asserts/phone-assert.js';
3030
import PlainObject from './asserts/plain-object-assert.js';
31-
import UkModulusChecking from './asserts/uk-modulus-checking-assert.js';
3231
import TaxpayerIdentificationNumber from './asserts/taxpayer-identification-number-assert.js';
32+
import UkModulusChecking from './asserts/uk-modulus-checking-assert.js';
3333
import Uri from './asserts/uri-assert.js';
3434
import UsSubdivision from './asserts/us-subdivision-assert.js';
3535
import UsZipCode from './asserts/us-zip-code-assert.js';
@@ -65,8 +65,8 @@ export default {
6565
NullOrString,
6666
Phone,
6767
PlainObject,
68-
UkModulusChecking,
6968
TaxpayerIdentificationNumber,
69+
UkModulusChecking,
7070
Uri,
7171
UsSubdivision,
7272
UsZipCode,

test/asserts/taxpayer-identification-number-assert_test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
* Module dependencies.
44
*/
55

6-
import { Assert as BaseAssert, Violation } from 'validator.js';
76
import TaxpayerIdentificationNumberAssert from '../../src/asserts/taxpayer-identification-number-assert';
7+
import { Assert as BaseAssert, Violation } from 'validator.js';
88
import should from 'should';
99

1010
/**
@@ -21,7 +21,7 @@ const Assert = BaseAssert.extend({
2121

2222
describe('TaxpayerIdentificationNumberAssert', () => {
2323
it('should throw an error if the input value is not a string', () => {
24-
[{}, []].forEach((choice) => {
24+
[{}, []].forEach(choice => {
2525
try {
2626
new Assert().TaxpayerIdentificationNumber().validate(choice);
2727

test/index_test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ describe('validator.js-asserts', () => {
3737
'NullOrString',
3838
'Phone',
3939
'PlainObject',
40-
'UkModulusChecking',
4140
'TaxpayerIdentificationNumber',
41+
'UkModulusChecking',
4242
'Uri',
4343
'UsSubdivision',
4444
'UsZipCode',

0 commit comments

Comments
 (0)