UNPKG

@beyondessential/arithmetic

Version:

Utility to evaluate BODMAS arithmetic formulas

57 lines (56 loc) 1.48 kB
{ "name": "@beyondessential/arithmetic", "version": "2.1.1", "description": "Utility to evaluate BODMAS arithmetic formulas", "keywords": [ "arithmetic", "calculations", "shunting yard", "bodmas" ], "homepage": "https://github.com/beyondessential/arithmetic.git#readme", "bugs": { "url": "https://github.com/beyondessential/arithmetic/issues" }, "repository": "git@github.com:beyondessential/arithmetic.git", "license": "MIT", "author": "Beyond Essential Systems <admin@tupaia.org> (https://beyondessential.com.au)", "main": "dist/index.js", "files": [ "src", "index.d.ts" ], "scripts": { "build": "babel src --out-dir dist --ignore 'src/__tests__/**'", "postinstall": "yarn build", "lint": "eslint --ignore-path .gitignore .", "lint:fix": "yarn lint --fix", "test": "NODE_ENV=test jest", "test:coverage": "yarn test --coverage", "test:watch": "yarn test --watch" }, "babel": { "presets": [ [ "@babel/preset-env" ] ] }, "eslintConfig": { "extends": [ "@beyondessential/js", "@beyondessential/jest" ] }, "devDependencies": { "@babel/cli": "^7.10.5", "@babel/core": "^7.11.1", "@babel/preset-env": "^7.11.0", "@beyondessential/eslint-config-jest": "^1.0.1", "@beyondessential/eslint-config-js": "^1.0.1", "babel-jest": "^26.3.0", "eslint": "^7.7.0", "jest": "^26.4.0", "prettier": "^2.0.5" } }