UNPKG

algebrite

Version:

Computer Algebra System in Coffeescript

43 lines (42 loc) 3.19 kB
{ "name": "algebrite", "//": "also change the version in the Algebrite variable at the top of defs file", "version": "1.1.1", "description": "Computer Algebra System in Coffeescript", "main": "dist/algebrite.js", "directories": { "test": "tests" }, "scripts": { "microtest": "cat runtime/defs.coffee sources/*.coffee runtime/alloc.coffee runtime/find.coffee runtime/init.coffee runtime/mcmp.coffee runtime/otherCFunctions.coffee runtime/count.coffee runtime/run.coffee runtime/stack.coffee runtime/symbol.coffee runtime/zombocom.coffee runtime/lrucache.coffee runtime/freeze.coffee test-harness.coffee run-micro-tests.coffee | coffee -cs | node", "test": "cat runtime/defs.coffee sources/*.coffee runtime/alloc.coffee runtime/find.coffee runtime/init.coffee runtime/mcmp.coffee runtime/otherCFunctions.coffee runtime/count.coffee runtime/run.coffee runtime/stack.coffee runtime/symbol.coffee runtime/zombocom.coffee runtime/lrucache.coffee runtime/freeze.coffee tests/*.coffee test-harness.coffee run-tests.coffee | coffee -cs | node", "build": "cat runtime/defs.coffee sources/*.coffee runtime/alloc.coffee runtime/find.coffee runtime/init.coffee runtime/mcmp.coffee runtime/otherCFunctions.coffee runtime/count.coffee runtime/run.coffee runtime/stack.coffee runtime/symbol.coffee runtime/zombocom.coffee runtime/lrucache.coffee runtime/freeze.coffee | coffee -sc > dist/algebrite.js", "build-for-browser": "cat runtime/defs.coffee sources/*.coffee runtime/alloc.coffee runtime/find.coffee runtime/init.coffee runtime/mcmp.coffee runtime/otherCFunctions.coffee runtime/count.coffee runtime/run.coffee runtime/stack.coffee runtime/symbol.coffee runtime/zombocom.coffee runtime/lrucache.coffee runtime/freeze.coffee | coffee -sc > dist/algebrite.js; browserify ./sources/mainForWebPage.js -o ./dist/algebrite.bundle-for-browser.js", "//": "this one is useful to check things quickly in the sandbox. Use after build-for-browser.", "browser-tests": "cat runtime/defs.coffee sources/*.coffee runtime/alloc.coffee runtime/find.coffee runtime/init.coffee runtime/mcmp.coffee runtime/otherCFunctions.coffee runtime/count.coffee runtime/run.coffee runtime/stack.coffee runtime/symbol.coffee runtime/zombocom.coffee runtime/lrucache.coffee runtime/freeze.coffee tests/*.coffee test-harness.coffee run-tests.coffee | coffee -sc > dist/algebrite.js; browserify ./sources/mainForWebPage.js -o ./dist/algebrite.bundle-for-browser.js", "copy-to-sandbox": "[ -d \"../Algebrite-website/\" ] && cp ./dist/algebrite.bundle-for-browser.js ../Algebrite-website/dist/ || echo \"Error: Algebrite-website directory not found, check the path in the package.json file\"" }, "repository": { "type": "git", "url": "git+https://github.com/davidedc/Algebrite.git" }, "keywords": [ "cas", "algebra", "computer", "algebra", "system", "eigenmath", "math", "symbolic" ], "author": "Davide Della Casa", "license": "MIT", "bugs": { "url": "https://github.com/davidedc/Algebrite/issues" }, "homepage": "https://github.com/davidedc/Algebrite#readme", "dependencies": { "big-integer": "^1.6.15" } }