-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
31 lines (31 loc) · 856 Bytes
/
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
{
"name": "geobeer",
"version": "1.2.1",
"description": "GeoJSON data files for Breweries",
"main": "",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"merge": "node ./bin/mergeBreweries.js ./breweries",
"format": "node ./bin/formatJSON.js ./breweries",
"uuid": "node ./bin/addUUID.js ./breweries",
"build": "npm run uuid > /dev/null; npm run format; npm run merge; git status"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devNoiseConsulting/geoBeer.git"
},
"keywords": [
"geoJSON",
"beer",
"breweries"
],
"author": "Michael Flynn",
"license": "MIT",
"bugs": {
"url": "https://github.com/devNoiseConsulting/geoBeer/issues"
},
"homepage": "https://github.com/devNoiseConsulting/geoBeer#readme",
"dependencies": {
"uuid": "^3.0.1"
}
}