-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
68 lines (68 loc) · 1.88 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"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": {
"deploy-demo": "surge . sewardparkstories.surge.sh",
"test": "node tests/index.js | tap-spec",
"parse-csv": "node bin/parse-csv.js",
"bundle-css": "sheetify css/index.css > 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": "chokidar 'css/*.css' -c 'npm run bundle-css'",
"watch": "npm run watch-js & npm run watch-css",
"start": "npm run bundle && budo app.js:assets/bundle.js --live"
},
"dependencies": {
"array-filter": "^0.2.0",
"base-element": "^3.0.1",
"basscss-grid": "^1.0.2",
"component-delegate": "^0.2.3",
"component-emitter": "^1.2.0",
"csskit": "^1.1.1",
"cuid": "^1.2.5",
"dom-event": "0.0.5",
"domify": "^1.3.3",
"element-class": "^0.1.1",
"extend": "^2.0.1",
"fastclick": "^1.0.1",
"geolocation-stream": "0.0.1",
"hash-match": "^1.0.1",
"inherits": "^2.0.1",
"leaflet": "^0.7.3",
"mapbox.js": "^2.1.9",
"marked": "^0.3.3",
"normalize.css": "^3.0.3",
"popupjs": "^1.3.0",
"view-list": "^2.0.0",
"virtual-dom": "^2.0.1",
"virtual-html": "^2.0.0",
"wayfarer": "^2.2.0",
"xhr": "^2.1.0"
},
"devDependencies": {
"brfs": "^1.2.0",
"browserify": "^5.11.2",
"budo": "^4.0.0",
"chokidar-cli": "^0.2.1",
"csv-parser": "^1.4.6",
"each-async": "^1.1.1",
"is-geojson": "^1.0.1",
"isarray": "0.0.1",
"sheetify": "^2.0.0",
"surge": "^0.14.2",
"tap-spec": "^4.0.0",
"tape": "^4.0.0",
"watchify": "^0.8.3"
}
}