chore: Initialize project with pnpm

This commit is contained in:
Glen Whitney 2022-07-18 15:33:08 -07:00
parent 711b9e726f
commit cb016474ec
3 changed files with 548 additions and 103 deletions

24
package.json5 Normal file
View file

@ -0,0 +1,24 @@
{
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: 'npx mocha',
},
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',
},
}