pocomath/package.json5

28 lines
595 B
Plaintext
Raw Normal View History

2022-07-18 22:33:08 +00:00
{
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: '!(find . | sort -f | uniq -i -c | grep -v " 1 ") && npx mocha',
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',
},
dependencies: {
'typed-function': '^3.0.0',
},
2022-07-18 22:33:08 +00:00
}