decentralized-internet
Version:
An NPM library of programs to create decentralized web and distributed computing projects
24 lines (21 loc) • 491 B
JavaScript
;
const tourism = require('tourism');
module.exports = tourism({
analyse: {
server: [ '**/*.js', '!node_modules/**/*.js', '!coverage/**/*.js' ],
options: {
server: {
language: 'es2015'
}
}
},
test: {
server: [ 'test/**/*Tests.js' ]
},
shell: {
integration: [
'docker build -t thenativeweb/p2p-test .',
'mocha --async-only --bail --colors --recursive --reporter spec --ui tdd integration'
].join(' && ')
}
});