-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
28 lines (28 loc) · 1.28 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
{
"name": "pascalwhoop-master-thesis-tex",
"version": "1.0.0",
"description": "",
"dependencies": {
"concurrently": "^3.5.0",
"watch": "^1.0.2"
},
"devDependencies": {
"@types/node": "^8.0.9",
"@types/watch": "^1.0.0"
},
"scripts": {
"start": "concurrently -c 'red,green,blue' -n 'paper,bibwatch,expose' -p '{name}' 'npm run watch' 'npm run watch-dl-bib' 'npm run watch-expose'",
"build": "npm run latexmk",
"watch": "node_modules/watch/cli.js 'echo \"tex change detected\" && npm run build' --filter=util/watch-filter.js ./src/",
"test": "echo \"Error: no test specified\" && exit 1",
"latexmk": "cd src/ && latexmk -pdf -bibtex main.tex && cd ../",
"watch-dl-bib": "node_modules/watch/cli.js './util/appendbib.sh' ~/Downloads/",
"watch-expose": "node_modules/watch/cli.js 'echo \"tex change detected\" && npm run latexmk-expose' --filter=util/watch-filter.js ./src/",
"latexmk-expose": "cd src/ && latexmk -pdf -bibtex proposal.tex && cd ../",
"clean": "rm -rf *.dvi *.blg *.log *.fls *.lof *.toc *.fdb_latexmk *.lot *.bbl *.aux",
"spelling": "aspell src/proposal.tex && aspell src/chaps/*.tex",
"start-old": "concurrently 'npm run serve' 'npm run screenshot-watch' 'npm run build-watch'"
},
"author": "",
"license": "ISC"
}