-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
30 lines (30 loc) · 1.07 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"author": {
"name": "Damián Avila",
"url": "https://github.com/damianavila"
},
"description": "Edit and Present Revealjs-based LIVE slides in the Jupyter Notebook",
"devDependencies": {
"less": "~2.7.2",
"less-plugin-autoprefix": "~1.4.2",
"less-plugin-clean-css": "~1.5.0",
"reveal.js": "~3.5.0",
"watch": "~0.16.0"
},
"license": "BSD-3-Clause",
"main": "rise/static/main.js",
"name": "rise",
"repository": {
"type": "git",
"url": "https://github.com/damianavila/RISE.git"
},
"scripts": {
"build": "for target in build-css build-reveal reset-reveal; do npm run $target; done",
"build-css": "npm run less",
"build-reveal": "cp -r ./node_modules/reveal.js rise/static/reveal.js",
"reset-reveal": "sed -i.upstream '11 s_^_/*_' rise/static/reveal.js/css/reveal.css",
"clean-reveal": "rm -r rise/static/reveal.js",
"less": "PATH=./node_modules/.bin:$PATH lessc --autoprefix src/less/main.less rise/static/main.css",
"watch-less": "./node_modules/.bin/watch 'npm run less' src/less"
},
"version": "5.3.0"