gzd-utils
Version:
Utilities for working with MGRS GZD and GeoJSON
53 lines (52 loc) • 1.47 kB
JSON
{
"name": "gzd-utils",
"version": "1.0.3",
"description": "Utilities for working with MGRS GZD and GeoJSON",
"author": "Gustav Larson",
"license": "ISC",
"keywords": [
"GeoJSON",
"MGRS",
"GZD"
],
"repository": {
"type": "git",
"url": "https://github.com/gustavlarson/gzd-utils"
},
"main": "build/gzd-utils.js",
"types": "build/gzd-utils.d.ts",
"files": [
"build/**/*.js",
"build/**/*.d.ts"
],
"scripts": {
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm test && npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"clean": "rm -rf \"build/\" && rm -rf \"coverage/\"",
"test": "jest --config jest.json --forceExit",
"test:coverage": "jest --config jest.json --forceExit --coverage --no-cache",
"build": "tsc",
"format": "prettier --write .",
"lint": "eslint --max-warnings 0 \"src/**/*.ts\""
},
"devDependencies": {
"@types/geojson": "^7946.0.7",
"@types/jest": "^26.0.19",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"codecov": "^3.8.1",
"eslint": "^7.16.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.3.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
},
"dependencies": {
"geojson": "^0.5.0"
}
}