-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 1007 Bytes
/
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
{
"name": "rooms",
"version": "0.1.0",
"description": "A small app to view meeting room availability for Google Calendar.",
"author": "Matthias Loker",
"licence": "GPL-2.0",
"dependencies": {
"mithril": "^0.2.0"
},
"devDependencies": {
"browserify": "10.2.4",
"http-server": "^0.8.0",
"node-sass": "latest",
"nodemon": "latest",
"uglify-js2": "2.1.11",
"watchify": "latest"
},
"scripts": {
"build:js": "mkdir -p dist/js ; browserify app/js/main.js | uglifyjs2 -o dist/js/app.js",
"build:css": "mkdir -p dist/css ; node-sass app/css/main.scss dist/css/bundle.css",
"watch:js": "watchify app/js/main.js -o dist/js/app.js -v",
"watch:css": "nodemon -e scss -x \"npm run build:css\"",
"watch": "npm run watch:js & npm run watch:css",
"build": "npm run build:js & npm run build:css ; cp -r app/img dist/img; cp app/index.html dist/index.html"
},
"repository": {
"type": "git",
"url": "https://github.com/HitFox/rooms.git"
}
}