-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 1.13 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
{
"name": "print-first-css",
"version": "3.6.0",
"description": "A simple starting point for typographic css projects",
"main": "source/style/main.less",
"scripts": {
"test": "which pandoc",
"css": "npx lessc --clean-css=\"--s1 --advanced\" source/style/main.less ./build/style/print-first.css",
"partials": "pandoc --template=./source/pandoc/template.html --css=../style/print-first.css ./source/markdown/partials/*md ./source/markdown/partials/00-metadata.yaml -s -o ./build/markdown/partials.html",
"prebuild": "mkdir -p build/ build/style build/markdown",
"build": "npm run css && npm run partials",
"postbuild": "echo Print First CSS: successfully compiled!"
},
"repository": {
"type": "git",
"url": "git+https://badlydrawnrob@github.com/badlydrawnrob/print-first-css.git"
},
"author": "Rob McDonald",
"license": "MIT",
"bugs": {
"url": "https://github.com/badlydrawnrob/print-first-css/issues"
},
"homepage": "https://github.com/badlydrawnrob/print-first-css#readme",
"devDependencies": {
"less": "^4.2.0",
"less-plugin-clean-css": "^1.6.0",
"normalize.css": "^8.0.1"
}
}