-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·35 lines (35 loc) · 996 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
31
32
33
34
35
{
"name": "oo-index",
"description": "A simple index of applications and services that can be run on the OpenShift platform",
"version": "0.0.1",
"private": true,
"engines": {
"node": "0.10.x",
"npm": "1.2.x"
},
"dependencies": {
"config": "0.4.x",
"restify": "2.5.x"
},
"devDependencies": {
"watchify": "~0.1.0",
"catw": "~0.0.1",
"tap": "~0.4.4"
},
"repository": {
"type": "git",
"url": "https://github.com/openshift/oo-index.git"
},
"scripts": {
"start": "node server.js",
"start-dev": "npm run watch & npm start",
"watch": "npm run watch-js & npm run watch-css",
"watch-css": "catw css/*.css -o static/bundle.css -v",
"watch-js": "watchify js/appindex.js -o static/bundle.js -dv",
"build-js": "browserify js/appindex.js > static/bundle.js",
"build-css": "cat css/*.css > static/bundle.css",
"build": "npm run build-js && npm run build-css",
"test": "tap test/*.js"
},
"main": "server.js"
}