forked from CodeForPhilly/philly-ward-leaders
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.8 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
{
"name": "philly-ward-leaders",
"version": "1.1.0",
"description": "Shining a spotlight on the powerful players behind Philadelphia elections.",
"main": "src/main.js",
"scripts": {
"dev": "budo src/main.js:build/bundle.js --live",
"mkdir": "mkdir -p build",
"build:css": "npm run mkdir && cleancss css/styles.css -o build/bundle.css",
"build:js": "npm run mkdir && browserify src/main.js | uglifyjs -- > build/bundle.js",
"build": "npm run build:css && npm run build:js",
"start": "npm run build:css && npm run dev"
},
"repository": {
"type": "git",
"url": "https://github.com/CodeForPhilly/philly-ward-leaders.git"
},
"author": "Code for Philly",
"license": "MIT",
"bugs": {
"url": "https://github.com/CodeForPhilly/philly-ward-leaders/issues"
},
"dependencies": {
"Leaflet.GeoSearch": "git://github.com/timwis/L.GeoSearch",
"backbone": "~1.1.2",
"backbone.marionette": "~2.4.1",
"browsernizr": "^1.0.2",
"foundation-sites": "git://github.com/zurb/bower-foundation.git#5.5.3",
"jquery": "^2.1.3",
"leaflet": "~0.7.3",
"leaflet-pip": "~0.1.1",
"leaflet.locatecontrol": "~0.40.0",
"moment": "~2.10.2",
"nprogress": "~0.1.6",
"snapsvg": "^0.4.0",
"tabletop": "git://github.com/timwis/tabletop",
"underscore": "~1.8.3",
"watchify": "^3.1.0"
},
"devDependencies": {
"browserify": "^13.1.0",
"budo": "^9.2.1",
"clean-css": "^3.4.20",
"gh-pages": "^0.11.0",
"node-underscorify": "0.0.14",
"uglify-js": "^2.7.3"
},
"browserify": {
"transform": [
[
"node-underscorify",
{
"templateSettings": {
"variable": "data"
}
}
]
]
},
"browser": {
"backbone.tabletopSync": "tabletop/src/backbone.tabletopSync.js"
}
}