-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
44 lines (44 loc) · 1.04 KB
/
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
{
"name": "shapefile-to-geojson",
"version": "1.0.0",
"description": "This package allows you to easily convert a shapefile to geojson.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepare": "npm run build:clean && npm run build",
"build": "tsc",
"build:watch": "npm run build -- --watch",
"build:clean": "rimraf dist",
"test": "jest --coverage --transformIgnorePatterns=''"
},
"author": "rrainn, Inc.",
"license": "MIT",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/rrainn/shapefile-to-geojson.git"
},
"bugs": {
"url": "https://github.com/rrainn/shapefile-to-geojson/issues"
},
"keywords": [
"shapefile",
"geojson",
"convert",
"converter",
"transform",
"gis",
"geography"
],
"devDependencies": {
"@types/geojson": "^7946.0.8",
"@types/jest": "^27.4.0",
"@types/node": "^16.11.10",
"jest": "^27.4.7",
"mkdirp": "^1.0.4",
"rimraf": "^3.0.2",
"typescript": "^4.5.2"
}
}