UNPKG

3.19 kBJSONView Raw
1{
2 "name": "algebrite",
3 "//": "also change the version in the Algebrite variable at the top of defs file",
4 "version": "1.1.1",
5 "description": "Computer Algebra System in Coffeescript",
6 "main": "dist/algebrite.js",
7 "directories": {
8 "test": "tests"
9 },
10 "scripts": {
11 "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",
12 "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",
13 "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",
14 "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",
15 "//": "this one is useful to check things quickly in the sandbox. Use after build-for-browser.",
16 "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",
17 "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\""
18 },
19 "repository": {
20 "type": "git",
21 "url": "git+https://github.com/davidedc/Algebrite.git"
22 },
23 "keywords": [
24 "cas",
25 "algebra",
26 "computer",
27 "algebra",
28 "system",
29 "eigenmath",
30 "math",
31 "symbolic"
32 ],
33 "author": "Davide Della Casa",
34 "license": "MIT",
35 "bugs": {
36 "url": "https://github.com/davidedc/Algebrite/issues"
37 },
38 "homepage": "https://github.com/davidedc/Algebrite#readme",
39 "dependencies": {
40 "big-integer": "^1.6.15"
41 }
42}