-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
45 lines (45 loc) · 1004 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
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "hextile",
"version": "1.1.1",
"description": "Generate tile representations of polygon objects on map",
"main": "dist/index.js",
"scripts": {
"build": "rm -rf dist && mkdir dist && babel src --out-dir dist",
"prepublish": "npm run test && npm run build",
"test": "standard"
},
"bin": {
"hextile": "bin/hextile.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/datagovsg/hextile.git"
},
"keywords": [
"geospatial",
"polygon",
"tiles",
"choropleth"
],
"author": "Yong Jun",
"license": "ISC",
"bugs": {
"url": "https://github.com/datagovsg/hextile/issues"
},
"homepage": "https://github.com/datagovsg/hextile#readme",
"dependencies": {
"lodash": "^4.17.4"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-3": "^6.17.0",
"standard": "^8.6.0"
},
"babel": {
"presets": [
"es2015",
"stage-3"
]
}
}