forked from applieddataconsultants/wheredat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 788 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
32
33
{
"author": "Marc Harter <[email protected]> (wavded.com)",
"name": "wheredat",
"description": "A simple, easy to use, geocoding interface for web applications",
"keywords": [
"leaflet",
"geocode",
"bing",
"widget"
],
"version": "0.5.3",
"homepage": "http://wheredat.adc4gis.com",
"bin": {
"wheredat": "server.js"
},
"repository": {
"type": "git",
"url": "git://github.com/applieddataconsultants/wheredat.git"
},
"scripts": {
"start": "nodemon -e html,js,png .",
"lint": "jshint server.js wheredat.js",
"ci-lint": "jshint --reporter=checkstyle server.js wheredat.js > checkstyle.xml"
},
"main": "server.js",
"engines": {
"node": "*"
},
"devDependencies": {
"jshint": "^2.5.2",
"nodemon": "^1.2.1"
}
}