-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
38 lines (38 loc) · 963 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
{
"name": "nepal-geojson",
"version": "5.0.0-alpha",
"description": "Lightweight package for map of Nepal",
"main": "index.js",
"scripts": {
"test": "mocha",
"country": "node cli.js country",
"country:withProvinces": "node cli.js country:withProvinces",
"country:withDistricts": "node cli.js country:withDistricts",
"province": "node cli.js province",
"province:withDistricts": "node cli.js province:withDistricts",
"district": "node cli.js district"
},
"bin": {
"nepal-geojson": "./cli.js"
},
"keywords": [
"Nepal",
"Map",
"Geojson"
],
"author": "acesmndr",
"license": "MIT",
"dependencies": {
"@turf/union": "^6.5.0",
"brfs": "^2.0.2",
"geojson-minifier": "^0.1.1"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.0.1",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.18.0",
"mocha": "^6.1.4",
"xhr-request": "^1.1.0"
}
}