-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
35 lines (35 loc) · 1.31 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
{
"name": "heart_of_the_valley",
"version": "1.0.0",
"description": "Our Valley of Heart's Delight (Santa Clara Valley, or the South Bay Area) has so many incredible murals and public art. This open source project visualizes and maps data about local public art and murals. We hope that this will help community members discover the beautiful murals and public art that make our communities vibrant. We also hope the map can help community members discover local artists and creatives in the South Bay.",
"main": "index.js",
"scripts": {
"test": "jest",
"scrapeArtworks": "node scripts/scrape-artworks.js",
"mergeArtworkFiles": "node scripts/consolidate-artwork-files.js",
"listUntitled": "node scripts/list-mural-by-title.js",
"lookupAddresses": "node scripts/lookup-addresses.js",
"moveArtToOutputDir": "node scripts/copy-art-to-prod.js",
"managePOIs": "node scripts/managePOIs.js"
},
"keywords": [
"San Jose",
"Art",
"Map",
"Heart of the Valley"
],
"author": "Code For San Jose",
"license": "MIT",
"dependencies": {
"@mapbox/mapbox-sdk": "0.2.0",
"crypto-js": "^3.1.9-1",
"ejs": "^3.0.1",
"express": "4.16.4",
"nominatim-browser": "2.0.2",
"osmosis": "1.1.10",
"string-hash": "1.1.3"
},
"devDependencies": {
"jest": "^24.9.0"
}
}