eb4868775a
* Update packages to fix build * Remove nsp, it is deprecated
17 lines
326 B
JavaScript
17 lines
326 B
JavaScript
/*eslint-disable */
|
|
var babel = require("babel");
|
|
|
|
module.exports = function(wallaby) {
|
|
return {
|
|
files: ["lib/**/*.js"],
|
|
tests: ["test/**/*-spec.js"],
|
|
compilers: {
|
|
"**/*.js": wallaby.compilers.babel({ babel: babel, stage: 1 })
|
|
},
|
|
env: {
|
|
type: "node"
|
|
},
|
|
testFramework: "mocha"
|
|
};
|
|
};
|