2022-07-18 22:33:08 +00:00
|
|
|
{
|
|
|
|
name: 'pocomath',
|
|
|
|
version: '0.0.0',
|
2022-07-25 18:56:12 +00:00
|
|
|
description: 'A little proof-of-concept for organizing mathjs by module inclusion, avoiding factory functions.',
|
2022-07-18 22:33:08 +00:00
|
|
|
main: 'index.js',
|
|
|
|
scripts: {
|
2022-07-22 20:49:14 +00:00
|
|
|
'test:filecase': '!(find . | sort -f | uniq -i -c | grep -v " 1 ")',
|
|
|
|
'test:unit': 'npx mocha --recursive',
|
|
|
|
test: 'pnpm test:filecase && pnpm test:unit',
|
2022-07-18 22:33:08 +00:00
|
|
|
},
|
|
|
|
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',
|
|
|
|
},
|
2022-07-19 00:08:49 +00:00
|
|
|
dependencies: {
|
2022-07-25 18:56:12 +00:00
|
|
|
'bigint-isqrt': '^0.2.1',
|
2022-08-07 16:19:27 +00:00
|
|
|
'fraction.js': '^4.2.0',
|
2022-07-19 00:08:49 +00:00
|
|
|
'typed-function': '^3.0.0',
|
|
|
|
},
|
2022-07-18 22:33:08 +00:00
|
|
|
}
|