-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 1.13 KB
/
package.json
File metadata and controls
24 lines (24 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "classroom-submissions-to-pdf",
"version": "0.1.0",
"author": "Adrien Joly <adrien.joly@gmail.com>",
"repository": "https://github.com/cours-javascript-eemi-2016-2017/classroom-submissions-to-pdf.git",
"scripts": {
"post-install": "brew install pdfgrep https://raw.githubusercontent.com/turforlag/homebrew-cervezas/master/pdftk.rb # pdfgrep and PDFTK to split annotated PDF files to one per student",
"split-pdf": "src/split.sh",
"render-from-url": "node src/render-from-url.js",
"start": "source .env; node src/download-students.js; node src/download-submissions.js; node src/convert-submissions.js; node src/render-submissions.js",
"list": "source .env; node src/list-assignments.js",
"test": "source .env; node tests/test.js",
"tests": "source .env; node tests/test-pdf.js; node tests/test-apis.js; node tests/test-classroom-api.js"
},
"dependencies": {
"async": "^1.5.2",
"google-auth-library": "^0.9.8",
"googleapis": "^14.0.0",
"html-pdf": "^2.1.0",
"jsbin-client": "^0.1.1",
"jsfiddle": "https://github.com/adrienjoly/node-jsfiddle#2351bc5",
"request": "^2.79.0"
}
}