forked from busbud/pongdome
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
25 lines (25 loc) · 841 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
{
"description": "PongDome web client.",
"license": "MIT",
"repository": "busbud/pongdome",
"scripts": {
"assets": "git show origin/assets:win.png > img/win.png && mkdir -p vendor && ln -fs ../node_modules/{normalize.css,npm-font-open-sans{,-condensed}} vendor",
"browserify": "browserify js/main.js -o js/bundle.js",
"build": "npm run assets && npm run browserify",
"prepublish": "npm run build",
"start": "open index.html || xdg-open index.html",
"watch": "npm run watchify",
"watchify": "watchify js/main.js -o js/bundle.js"
},
"dependencies": {
"express": "^4.16.2",
"moment": "^2.20.1",
"normalize.css": "^7.0.0",
"npm-font-open-sans": "^1.1.0",
"npm-font-open-sans-condensed": "^1.0.3"
},
"devDependencies": {
"browserify": "^15.2.0",
"watchify": "^3.10.0"
}
}