2022-07-18 15:33:08 -07:00
|
|
|
{
|
|
|
|
name: 'pocomath',
|
|
|
|
version: '0.0.0',
|
2022-07-25 11:56:12 -07:00
|
|
|
description: 'A little proof-of-concept for organizing mathjs by module inclusion, avoiding factory functions.',
|
2022-07-18 15:33:08 -07: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 15:33:08 -07: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: {
|
2025-03-18 22:04:15 -07:00
|
|
|
mocha: '^11.1.0',
|
2023-08-15 17:38:31 -07:00
|
|
|
'pad-right': '^0.2.2',
|
2025-03-18 22:04:15 -07:00
|
|
|
tinybench: '^4.0.1',
|
2022-07-18 15:33:08 -07:00
|
|
|
},
|
2022-07-18 17:08:49 -07:00
|
|
|
dependencies: {
|
2025-03-18 22:04:15 -07:00
|
|
|
'bigint-isqrt': '^0.3.2',
|
|
|
|
'fraction.js': '^5.2.1',
|
|
|
|
'typed-function': '^4.2.1',
|
2022-07-18 17:08:49 -07:00
|
|
|
},
|
2022-07-18 15:33:08 -07:00
|
|
|
}
|