-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 981 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 981 Bytes
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": "multiscreen",
"version": "0.0.1",
"description": "This is a website that can allow the user to view multiple websites as if they had there screen divided.",
"main": "index.js",
"scripts": {
"build-css": "stylus source/stylesheets/index.styl -o static/css",
"watch-css": "stylus source/stylesheets/index.styl -o static/css -w",
"clean": "rm -rf static/css && mkdir -p static/css",
"build": "npm run clean && npm run build-css",
"watch": "npm run clean && npm run watch-css & nodemon server -e js,jade",
"start": "node server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/crabbymonkey/MultiScreen.git"
},
"author": "Ryan Dufrene",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/crabbymonkey/MultiScreen/issues"
},
"homepage": "https://github.com/crabbymonkey/MultiScreen#readme",
"dependencies": {
"ejs": "~2.5.5",
"express": "^4.16.3",
"jade": "^1.11.0"
}
}