UNPKG

@brewlab/calc

Version:

Library with methods for calculations used in brewing.

91 lines (90 loc) 2.03 kB
{ "name": "@brewlab/calc", "version": "0.3.14", "description": "Library with methods for calculations used in brewing.", "babel": { "presets": [ [ "@babel/preset-env", { "targets": { "node": 8 }, "modules": "commonjs", "useBuiltIns": "usage", "corejs": 3 } ], [ "@babel/preset-typescript", { "allExtensions": true, "onlyRemoveTypeImports": true } ] ] }, "jest": { "collectCoverage": true, "coverageThreshold": { "global": { "branches": 100, "functions": 100, "lines": 100, "statements": 100 }, "./**/index.*": { "branches": 0, "functions": 0, "lines": 0, "statements": 0 } } }, "eslintConfig": { "extends": "arri" }, "main": "index.js", "scripts": { "test": "jest --watch", "test:all": "jest src", "test:ci": "cross-env NODE_ENV=ci jest dist", "lint": "eslint src/*.ts", "build": "tsc" }, "repository": { "type": "git", "url": "git+https://github.com/bblais23/brewlab-calc.git" }, "keywords": [ "Brewing", "Calculations", "library" ], "author": "Arri Blais <arriblais@gmail.com>", "license": "Apache-2.0", "bugs": { "url": "https://github.com/bblais23/brewlab-calc/issues" }, "homepage": "https://github.com/bblais23/brewlab-calc#readme", "devDependencies": { "@babel/cli": "^7.8.4", "@babel/core": "^7.9.0", "@babel/polyfill": "^7.8.7", "@babel/preset-env": "^7.9.0", "@babel/preset-typescript": "^7.9.0", "@types/fs-extra": "^9.0.0", "@types/jest": "^25.2.2", "@types/node": "^14.0.1", "cross-env": "^7.0.2", "eslint": "^6.8.0", "eslint-config-arri": "^1.2.3", "eslint-plugin-import": "^2.20.1", "fs-extra": "^9.0.0", "jest": "^25.2.3", "typescript": "^3.9.2" }, "dependencies": { "core-js": "^3.6.4" } }