-
-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
39 lines (39 loc) · 1.08 KB
/
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
36
37
38
39
{
"name": "magickeyboard.io",
"version": "0.0.0",
"author": {
"name": "Feross Aboukhadijeh",
"email": "[email protected]",
"url": "http://feross.org/"
},
"bugs": {
"url": "https://github.com/feross/magickeyboard.io/issues"
},
"dependencies": {
"matter-js": "^0.10.0",
"preload-img": "^1.0.0",
"vkey": "^1.0.0"
},
"devDependencies": {
"browserify": "^16.2.3",
"ecstatic": "^4.1.2",
"simple-get": "^4.0.0",
"standard": "*",
"watchify": "^3.6.1"
},
"homepage": "https://github.com/feross/magickeyboard.io",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/feross/magickeyboard.io.git"
},
"scripts": {
"build": "node bin/get-hexagons.js && browserify client > static/bundle.js",
"deploy": "git push && ssh future 'cd /home/feross/www/magickeyboard.io && git pull'",
"serve": "ecstatic -p 4000 static",
"start": "npm run build && npm run serve",
"test": "standard",
"watch": "npm run watch-js & npm run serve",
"watch-js": "watchify client -o static/bundle.js -dv"
}
}