UNPKG

630 BJavaScriptView Raw
1import Package from './package.json';
2
3export default {
4 bundle: true,
5 transform: true,
6 name: 'Oxe',
7 input: 'src/index.js',
8 output: [
9 { output: 'oxe.js' },
10 { output: 'oxe.min.js', minify: true }
11 ],
12 header: `/*
13 Name: ${Package.name}
14 Version: ${Package.version}
15 License: ${Package.license}
16 Author: ${Package.author}
17 Email: ${Package.email}
18 This Source Code Form is subject to the terms of the Mozilla Public
19 License, v. 2.0. If a copy of the MPL was not distributed with this
20 file, You can obtain one at http://mozilla.org/MPL/2.0/.
21 */
22 `
23};