-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 728 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 728 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
{
"name": "which-country",
"version": "1.0.0",
"description": "Get ISO 3166-1 alpha-3 country code for geographic coordinates",
"main": "index.js",
"scripts": {
"test": "node test/index.js",
"generate": "node generate.js > data.json",
"prepublish": "npm run generate",
"rebuild-example": "browserify -g cssify example/main.js > example/build.js"
},
"author": "Vladimir Kurchatkin <vladimir.kurchatkin@gmail.com>",
"repository": "vkurchatkin/which-country",
"license": "MIT",
"dependencies": {
"point-in-polygon": "0.0.0",
"rbush": "^1.3.2"
},
"devDependencies": {
"browserify": "^5.11.0",
"cssify": "^0.6.0",
"leaflet": "^0.7.3",
"world-countries": "^1.5.0"
}
}