forked from josdejong/mathjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.16 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "mathjs",
"version": "0.9.0",
"description": "Math.js is an extensive math library for JavaScript and Node.js. It features real and complex numbers, units, matrices, a large set of mathematical functions, and a flexible expression parser.",
"author": "Jos de Jong <[email protected]>",
"contributors": [
{
"name": "Jos de Jong",
"email": "[email protected]"
}
],
"homepage": "http://mathjs.org",
"repository": {
"type": "git",
"url": "git://github.com/josdejong/mathjs.git"
},
"keywords": [
"math",
"mathematics",
"functions",
"numeric",
"parser",
"expression",
"real",
"complex",
"matrix",
"unit"
],
"dependencies": {},
"devDependencies": {
"jake": ">= 0.5.9",
"uglify-js": ">= 2.2.5",
"nodeunit": ">= 0.7.4",
"dateable": ">= 0.1.2",
"numbers": "latest"
},
"scripts": {
"test": "jake test --trace"
},
"main": "./math.js",
"bin": {
"mathjs": "./bin/cli.js"
},
"engines": {
"node": "*"
}
}