1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
presentation-base/package.json

36 lines
1.1 KiB
JSON

{
"name": "presentation-base",
"version": "1.0.0",
"description": "Base Presentation Repository for Reveal.js",
"main": "index.js",
"scripts": {
"build-js": "browserify src/index.js -o build/index.js && cp -r node_modules/reveal.js/plugin build/ && cp node_modules/reveal.js/lib/js/head.min.js build/head.min.js",
"build-css": "node-sass src/index.scss build/index.css --source-map-embed",
"build-html": "node src/build-html.js",
"build": "rm -rf build/ && mkdir -p build/ && npm run build-js && npm run build-css && npm run build-html",
"start": "tstatic build/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RealOrangeOne/presentation-base.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/RealOrangeOne/presentation-base/issues"
},
"homepage": "https://github.com/RealOrangeOne/presentation-base#readme",
"devDependencies": {
"browserify": "14.4.0",
"glob": "7.1.2",
"handlebars": "4.0.10",
"node-sass": "4.5.3",
"underscore": "1.8.3"
},
"dependencies": {
"highlight.js": "9.12.0",
"reveal.js": "3.5.0",
"tstatic": "1.1.0"
}
}