Skip to content

Commit 8d20080

Browse files
committed
Update npm dependencies
1 parent c3e2a4b commit 8d20080

File tree

2 files changed

+12
-7
lines changed

2 files changed

+12
-7
lines changed

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,19 +39,19 @@
3939
"watch": "babel --optional runtime scripts/watch.js | node"
4040
},
4141
"dependencies": {
42-
"babel-runtime": "5.5.5"
42+
"babel-runtime": "5.6.12"
4343
},
4444
"devDependencies": {
45-
"babel": "5.5.5",
46-
"babel-core": "5.5.5",
47-
"babel-eslint": "3.1.15",
45+
"babel": "5.6.12",
46+
"babel-core": "5.6.12",
47+
"babel-eslint": "3.1.23",
4848
"chai": "3.0.0",
4949
"chai-as-promised": "5.1.0",
5050
"chai-subset": "1.0.1",
51-
"eslint": "0.22.1",
51+
"eslint": "0.24.0",
5252
"flow-bin": "0.13.1",
5353
"isparta": "3.0.3",
5454
"mocha": "2.2.5",
55-
"sane": "1.1.2"
55+
"sane": "1.1.3"
5656
}
5757
}

scripts/mocha-bootload.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,14 @@
77
* of patent rights can be found in the PATENTS file in the same directory.
88
*/
99

10-
require('babel/register')({ optional: ['runtime'] });
10+
require('babel/register')({
11+
optional: ['runtime']
12+
});
13+
1114
var chai = require('chai');
15+
1216
var chaiSubset = require('chai-subset');
1317
chai.use(chaiSubset);
18+
1419
var chaiAsPromised = require('chai-as-promised');
1520
chai.use(chaiAsPromised);

0 commit comments

Comments
 (0)