@parsify/math
Version:
Parsify plugin for mathematical expressions & unit conversions
78 lines (77 loc) • 2.04 kB
JSON
{
"name": "@parsify/math",
"version": "2.0.0",
"description": "Parsify plugin for mathematical expressions & unit conversions",
"main": "dist/index.js",
"type": "module",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"author": "Antoni Kepinski <antoni@kepinski.ch> (https://www.kepinski.ch)",
"bugs": {
"url": "https://github.com/parsify/math/issues"
},
"scripts": {
"prebuild": "del-cli dist",
"build": "tsc",
"test": "xo && c8 ava",
"prepublishOnly": "npm run build"
},
"engines": {
"node": ">=14"
},
"license": "MIT",
"repository": "parsify/math",
"homepage": "https://github.com/parsify/math",
"keywords": [
"parsify",
"@parsify/math",
"parsify-plugin",
"plugin",
"expression-parser",
"parser",
"expression",
"math",
"math-expressions",
"mathjs"
],
"devDependencies": {
"@sindresorhus/tsconfig": "^2.0.0",
"@types/node": "^16.11.6",
"ava": "^3.15.0",
"c8": "^7.10.0",
"coveralls": "^3.1.1",
"del-cli": "^4.0.1",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
},
"sideEffects": false,
"ava": {
"extensions": {
"ts": "module"
},
"nonSemVerExperiments": {
"configurableModuleFormat": true
},
"nodeArguments": [
"--loader=ts-node/esm"
]
},
"xo": {
"rules": {
"import/no-anonymous-default-export": "off",
"eslint-comments/no-unused-disable": "off",
"@typescript-eslint/no-unsafe-call": "off",
"@typescript-eslint/no-unsafe-member-access": "off",
"@typescript-eslint/no-unsafe-return": "off",
"@typescript-eslint/naming-convention": "off"
},
"ignores": [
"test.ts"
]
},
"dependencies": {
"mathjs": "^10.0.2"
}
}