forked from sewardparkstories/sewardparkstories.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.36 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
40
41
42
43
44
45
46
47
48
49
{
"name": "seward-park-map",
"description": "",
"version": "0.0.0",
"repository": {
"url": "git://github.com/sethvincent/seward-park-map.git"
},
"main": "map.js",
"browserify": {
"transform": [
"brfs"
]
},
"scripts": {
"parse-csv": "node bin/parse-csv.js",
"bundle-css": "rework-npm style.css -o assets/bundle.css",
"bundle-js": "browserify app.js -o assets/bundle.js -t brfs",
"bundle": "npm run bundle-css & npm run bundle-js",
"watch-js": "watchify app.js -o assets/bundle.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 3123 & npm run watch"
},
"dependencies": {
"component-delegate": "^0.2.3",
"element-class": "^0.1.1",
"fastclick": "^1.0.1",
"flatsheet-api-client": "^1.1.2",
"geolocation-stream": "0.0.1",
"handlebars": "~1.3.0",
"leaflet": "~0.7.2",
"leaflet-providers": "^1.0.3",
"mapbox.js": "^2.1.0",
"normalize-css": "git://github.com/sethvincent/normalize-css",
"page": "^1.5.0"
},
"devDependencies": {
"brfs": "^1.2.0",
"browserify": "^5.11.2",
"csv-parser": "^1.4.6",
"gazer": "0.0.3",
"myth": "~0.3.0",
"rework-npm-cli": "0.0.1",
"serve": "^1.4.0",
"through2": "^0.6.3",
"through2-map": "^1.4.0",
"watchify": "^0.8.3"
}
}