-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.05 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
{
"name": "space",
"description": "a guide to seattle's coworking & maker spaces",
"version": "0.0.0",
"repository": {
"url": "git://github.com/sethvincent/space.git"
},
"main": "app.js",
"scripts": {
"bundle-css": "rework-npm style.css | myth > bundle/app.css",
"bundle-js": "browserify app.js -o bundle/app.js -t brfs",
"bundle": "npm run bundle-css & npm run bundle-js",
"watch-js": "watchify app.js -o bundle/app.js -t brfs",
"watch-css": "gazer -p style.css npm run bundle-css",
"watch": "npm run watch-js & npm run watch-css",
"start": "serve -p 4321 & npm run watch"
},
"dependencies": {
"dom-events": "^0.1.1",
"domify": "^1.3.0",
"element-class": "^0.1.1",
"fastclick": "^1.0.2",
"flatsheet": "^0.2.3",
"handlebars": "^1.3.0",
"leaflet": "^0.7.3",
"normalize-css": "^2.3.1"
},
"devDependencies": {
"brfs": "^1.1.2",
"browserify": "^4.2.3",
"gazer": "0.0.3",
"myth": "^1.1.1",
"rework-npm-cli": "^0.1.1",
"serve": "^1.4.0",
"watchify": "^0.10.2"
}
}