-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
14 lines (14 loc) · 1.03 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
"name": "Nullchan",
"version": "0.1.0",
"scripts": {
"buildLib": "babel js/libs -o js/lib.js && uglifyjs js/lib.js --screw-ie8 --mangle --compress -o js/lib.js --preamble \"/*\n * Nullchan P2P imageboard engine\n *\n * Licensed under the GNU GPL v3 license: \n * http://www.gnu.org/licenses/gpl-3.0.en.html \n *\n * Source code is minified to improve load time, full source on GitHub: \n * https://github.com/Nullchan/nullchan\n */\"",
"build": "babel js/templates js/engine -o js/engine.js && uglifyjs js/engine.js --screw-ie8 --mangle --compress -o js/engine.js --preamble \"/*\n * Nullchan P2P imageboard engine\n *\n * Licensed under the GNU GPL v3 license: \n * http://www.gnu.org/licenses/gpl-3.0.en.html \n *\n * Source code is minified to improve load time, full source on GitHub: \n * https://github.com/Nullchan/nullchan\n */\"",
"buildDev": "babel js/templates js/engine -o js/engine.js"
},
"devDependencies": {
"babel-cli": "^6.0.0",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0"
}
}