N°5621 Move clipboard 2.0.4 to NPM

This commit is contained in:
Pierre Goiffon
2024-02-16 16:54:31 +01:00
parent 3e9f4df1bf
commit e758527ca9
88 changed files with 6932 additions and 2 deletions

24
node_modules/delegate/karma.conf.js generated vendored Normal file
View File

@@ -0,0 +1,24 @@
module.exports = function(karma) {
karma.set({
plugins: ['karma-browserify', 'karma-chai', 'karma-sinon', 'karma-mocha', 'karma-phantomjs-launcher'],
frameworks: ['browserify', 'chai', 'sinon', 'mocha'],
files: [
'src/**/*.js',
'test/**/*.js',
'./node_modules/phantomjs-polyfill/bind-polyfill.js'
],
preprocessors: {
'src/**/*.js' : ['browserify'],
'test/**/*.js': ['browserify']
},
browserify: {
debug: true
},
browsers: ['PhantomJS']
});
}