We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57e54e0 commit d72d058Copy full SHA for d72d058
package.json
@@ -5,15 +5,24 @@
5
"private": true,
6
"scripts": {
7
"start": "browser-sync start --server ./src --files ./src",
8
- "test": "mocha test/*.spec.js",
+ "test": "mocha --compilers js:babel-register test/*.spec.js",
9
"deploy:github-pages": "git subtree push --prefix src origin gh-pages"
10
},
11
"author": "Sergio Cruz <[email protected]>",
12
"license": "MIT",
13
"devDependencies": {
14
+ "babel-preset-es2015": "^6.18.0",
15
+ "babel-register": "^6.18.0",
16
"browser-sync": "^2.14.0",
17
"chai": "^3.5.0",
18
"jsdom": "^9.4.1",
19
"mocha": "^3.0.1"
20
+ },
21
+ "engines": {
22
+ "node": ">=4.6",
23
+ "npm": ">=2.15"
24
25
+ "babel": {
26
+ "presets": ["es2015"]
27
}
28
0 commit comments