forked from jiggzson/nerdamer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.12 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
50
51
52
53
54
55
56
{
"author": {
"name": "Martin Donk",
"email": "[email protected]"
},
"description": "javascript light-weight symbolic math expression evaluator",
"name": "nerdamer",
"license": "MIT",
"version": "1.0.4",
"homepage": "http://nerdamer.com/",
"directory": {
"lib": "./"
},
"main": "nerdamer.core.js",
"typings": "index.d.ts",
"keywords": [
"math",
"matrix",
"complex",
"number",
"parser",
"expression",
"functions",
"numeric",
"equation solver",
"linear algebra",
"vectors",
"symbolic",
"integration",
"differentiation",
"derivative",
"algebra",
"calculus",
"mathematics",
"constants",
"symbolic math"
],
"repository": {
"type": "git",
"url": "https://github.com/jiggzson/nerdamer.git"
},
"bugs": {
"url": "https://github.com/jiggzson/nerdamer/issues"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "jasmine"
},
"devDependencies": {
"big-integer": "1.6.41",
"decimal.js": "10.1.1",
"jasmine": "^2.6.0"
}
}