UNPKG

mathleet

Version:

Library of helpful math utilities.

88 lines (87 loc) 2.33 kB
{ "name": "mathleet", "version": "0.1.0", "description": "Library of helpful math utilities.", "repository": { "type": "git", "url": "git+https://github.com/ryanhefner/mathleet.git" }, "keywords": [ "math", "utils", "map", "reduce", "averages" ], "author": "Ryan Hefner <hi@ryanhefner.com> (https://www.ryanhefner.com)", "license": "MIT", "bugs": { "url": "https://github.com/ryanhefner/mathleet/issues" }, "homepage": "https://github.com/ryanhefner/mathleet#readme", "funding": [ { "type": "github", "url": "https://github.com/sponsors/ryanhefner" }, { "type": "patreon", "url": "https://www.patreon.com/ryanhefner" }, { "type": "opencollective", "url": "https://opencollective.com/ryanhefner" } ], "files": [ "es", "src", "types", "umd", "index.js" ], "directories": { "lib": "/src" }, "main": "index.js", "module": "es/index.js", "jsnext:main": "src/index.js", "types": "types", "scripts": { "clean": "rimraf index.js,es,umd", "prebuild": "npm run clean", "build": "node ./tools/build.js", "watch": "babel ./src -d . --ignore __mocks__,__tests__,**/*.test.js --watch", "prepare": "npm run build", "prepublishOnly": "node ./tools/build.js", "push-release": "git push origin master && git push --tags", "dtslint": "dtslint types", "test": "snyk test && jest --findRelatedTests src/index.js", "test:ci": "jest --findRelatedTests src/index.js", "types": "tsc" }, "devDependencies": { "@babel/cli": "^7.12.10", "@babel/core": "^7.12.10", "@babel/plugin-transform-runtime": "^7.12.10", "@babel/preset-env": "^7.12.11", "babel-core": "^7.0.0-bridge.0", "babel-jest": "^26.6.3", "babel-plugin-dev-expression": "^0.2.2", "babel-polyfill": "^6.26.0", "dtslint": "^4.0.6", "gzip-size": "^6.0.0", "jest": "^26.6.3", "pretty-bytes": "^5.5.0", "regenerator-runtime": "^0.13.7", "rimraf": "^3.0.2", "rollup": "^2.36.1", "rollup-plugin-babel": "^4.4.0", "rollup-plugin-commonjs": "^10.1.0", "rollup-plugin-json": "^4.0.0", "rollup-plugin-node-resolve": "^5.2.0", "rollup-plugin-terser": "^7.0.2", "snyk": "^1.437.3", "typescript": "^4.2.3" } }