forked from josdejong/mathjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.09 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
48
49
{
"name": "mathjs",
"version": "0.15.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 <wjosdejong@gmail.com>",
"contributors": [
{
"name": "Jos de Jong",
"email": "wjosdejong@gmail.com"
}
],
"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",
"browserify": "2.x",
"mocha": "1.x",
"numbers" : "0.4.0",
"uglify-js": ">= 2.2.5",
"dateable": ">= 0.1.2",
"underscore": "1.4.x",
"seed-random": ">= 1.0.1"
},
"scripts": {
"test": "mocha test --recursive --reporter spec"
},
"bin": {
"mathjs": "./bin/cli.js"
},
"engines": {
"node": "*"
}
}