UNPKG

2.1 kBJSONView Raw
1{
2 "name": "algebrite",
3 "version": "0.4.0",
4 "description": "Computer Algebra System in Coffeescript",
5 "main": "dist/algebrite.js",
6 "directories": {
7 "test": "tests"
8 },
9 "scripts": {
10 "microtest": "cat runtime/defs.coffee sources/*.coffee runtime/alloc.coffee runtime/display.coffee runtime/find.coffee runtime/init.coffee runtime/mcmp.coffee runtime/otherCFunctions.coffee runtime/run.coffee runtime/stack.coffee runtime/symbol.coffee runtime/zombocom.coffee test-harness.coffee run-micro-tests.coffee | coffee -cs | node",
11 "test": "cat runtime/defs.coffee sources/*.coffee runtime/alloc.coffee runtime/display.coffee runtime/find.coffee runtime/init.coffee runtime/mcmp.coffee runtime/otherCFunctions.coffee runtime/run.coffee runtime/stack.coffee runtime/symbol.coffee runtime/zombocom.coffee tests/*.coffee test-harness.coffee run-tests.coffee | coffee -cs | node",
12 "build": "cat runtime/defs.coffee sources/*.coffee runtime/alloc.coffee runtime/display.coffee runtime/find.coffee runtime/init.coffee runtime/mcmp.coffee runtime/otherCFunctions.coffee runtime/run.coffee runtime/stack.coffee runtime/symbol.coffee runtime/zombocom.coffee | coffee -sc > dist/algebrite.js",
13 "build-for-browser": "cat runtime/defs.coffee sources/*.coffee runtime/alloc.coffee runtime/display.coffee runtime/find.coffee runtime/init.coffee runtime/mcmp.coffee runtime/otherCFunctions.coffee runtime/run.coffee runtime/stack.coffee runtime/symbol.coffee runtime/zombocom.coffee | coffee -sc > dist/algebrite.js; browserify ./sources/mainForWebPage.js -o ./dist/algebrite.bundle-for-browser.js"
14 },
15 "repository": {
16 "type": "git",
17 "url": "git+https://github.com/davidedc/Algebrite.git"
18 },
19 "keywords": [
20 "cas",
21 "algebra",
22 "computer",
23 "algebra",
24 "system",
25 "eigenmath",
26 "math",
27 "symbolic"
28 ],
29 "author": "Davide Della Casa",
30 "license": "MIT",
31 "bugs": {
32 "url": "https://github.com/davidedc/Algebrite/issues"
33 },
34 "homepage": "https://github.com/davidedc/Algebrite#readme",
35 "dependencies": {
36 "big-integer": "^1.6.15"
37 }
38}