pocomath/package.json5
Glen Whitney 0069597a76 fix: Separate typed instance for each PocomathInstance (#15)
Also starts each PocomathInstance with no types at all, and uses the new
  situation to eliminate the need for a Complex "base case".

  Resolves #14.
  Resolves #13.

Co-authored-by: Glen Whitney <glen@studioinfinity.org>
Reviewed-on: #15
2022-07-22 20:49:14 +00:00

30 lines
685 B
Plaintext

{
name: 'pocomath',
version: '0.0.0',
description: 'A little proof-of-concept for organizing mathjs by module\
inclusion, avoiding factory functions.',
main: 'index.js',
scripts: {
'test:filecase': '!(find . | sort -f | uniq -i -c | grep -v " 1 ")',
'test:unit': 'npx mocha --recursive',
test: 'pnpm test:filecase && pnpm test:unit',
},
repository: {
type: 'git',
url: 'https://code.studioinfinity.org/glen/picomath.git',
},
keywords: [
'math',
'algebra',
],
author: 'Glen Whitney',
license: 'Apache-2.0',
type: 'module',
devDependencies: {
mocha: '^10.0.0',
},
dependencies: {
'typed-function': '^3.0.0',
},
}