calculate-distance-between-coordinates
Version:
Calculate the distance between coordinates
36 lines (35 loc) • 976 B
JSON
{
"name": "calculate-distance-between-coordinates",
"version": "1.0.5",
"repository": "https://github.com/TijsM/distance-between-coordinates",
"description": "Calculate the distance between coordinates",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"keywords": [
"Coordinates",
"Distance",
"Typescript"
],
"author": "Tijs Martens",
"files": [
"lib/**/*"
],
"scripts": {
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"test": "echo \"Error: no test specified\" && exit 1"
},
"license": "ISC",
"devDependencies": {
"prettier": "^2.6.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.6.2"
}
}