aboutsummaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
Diffstat (limited to 'package.json')
-rw-r--r--package.json21
1 files changed, 15 insertions, 6 deletions
diff --git a/package.json b/package.json
index 656665a..3bdedd1 100644
--- a/package.json
+++ b/package.json
@@ -1,13 +1,22 @@
{
- "name": "makeup",
+ "name": "makeup",
+ "license": "GPL-3.0",
+ "description": "MakeUp website",
- "dependencies": {
- "pandoc-bin": "0.1.2"
+ "repository": {
+ "type": "git",
+ "url": "git://github.com/guyonvarch/makeup.git"
},
- "scripts": {
- "build": "./gen.sh"
+ "dependencies": {
+ "pandoc-bin": "0.1.2",
+ "http-server": "0.8.0",
+ "watch": "0.16.0"
},
- "license": "GPL-3"
+ "scripts": {
+ "watch": "watch ./gen.sh ./Markdown ./Fragments & npm run serve",
+ "serve": "npm run kill-server && http-server -p 8000",
+ "kill-server": "fuser -k 8000/tcp || true"
+ }
}