-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 742 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 742 Bytes
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
{
"name": "foss4g-map",
"version": "0.0.0",
"description": "A map showing things at FOSS4G 2014",
"main": "assets/js/main.js",
"scripts": {
"build": "browserify assets/js/main.js > assets/js/bundle.js",
"watch": "watchify assets/js/main.js -o assets/js/bundle.js",
"serve": "serve -p 5000",
"dev": "npm run serve & npm run watch"
},
"repository": {
"type": "git",
"url": "git://github.com/JasonSanford/foss4g-map.git"
},
"keywords": [
"FOSS4G",
"map"
],
"author": "Jason Sanford",
"license": "MIT",
"bugs": {
"url": "https://github.com/JasonSanford/foss4g-map/issues"
},
"homepage": "https://github.com/JasonSanford/foss4g-map",
"dependencies": {
"xhr": "~1.13.0"
}
}