UNPKG

random-location

Version:

Random coordinates within a circle (or on a circumference) given a center point and radius.

63 lines (62 loc) 1.78 kB
{ "name": "random-location", "version": "1.1.3", "description": "Random coordinates within a circle (or on a circumference) given a center point and radius.", "author": "Sagi Kedmi (https://sagi.io) <git@sagi.io>", "license": "MIT", "main": "dist/index.js", "scripts": { "test": "jest", "prebuild": "rimraf dist", "lint": "eslint ./src", "build": "npm-run-all --parallel build:*", "build:babel": "babel --ignore '**/*.test.js' src -d dist --verbose", "build:webpack": "webpack --display-modules ./src -o dist/randomLocation.umd.js", "prettier:ci": "prettier --check \"src/**/*.js\"", "semantic-release": "yarn build && semantic-release" }, "devDependencies": { "@babel/cli": "^7.8.4", "@babel/core": "^7.9.0", "@babel/preset-env": "^7.9.5", "@commitlint/cli": "^8.3.5", "@commitlint/config-conventional": "^8.3.4", "babel-eslint": "^10.1.0", "codecov": "^3.6.5", "eslint": "^6.8.0", "eslint-config-prettier": "^6.11.0", "eslint-plugin-jest": "^23.8.2", "eslint-plugin-prettier": "^3.1.3", "husky": "^4.2.5", "jest": "^25.4.0", "npm-run-all": "4.1.5", "prettier": "^2.0.5", "rimraf": "3.0.2", "seedrandom": "^3.0.5", "semantic-release": "^17.0.7", "webpack": "4.43.0", "webpack-cli": "^3.3.11" }, "husky": { "hooks": { "commit-msg": "commitlint -E HUSKY_GIT_PARAMS" } }, "repository": { "type": "git", "url": "https://github.com/rmrs/random-location.git" }, "bugs": { "url": "https://github.com/rmrs/random-location/issues" }, "homepage": "https://github.com/rmrs/random-location", "keywords": [ "random", "location", "coordinates", "radius", "central", "center", "point" ] }