forked from josdejong/mathjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 3.11 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "mathjs",
"version": "2.1.0",
"description": "Math.js is an extensive math library for JavaScript and Node.js. It features a flexible expression parser and offers an integrated solution to work with numbers, big numbers, complex numbers, units, and matrices.",
"author": "Jos de Jong <[email protected]> (https://github.com/josdejong)",
"contributors": [
"Andy Pan (https://github.com/andy0130tw)",
"Bart Kiers (https://github.com/bkiers)",
"Bryan Cuccioli (https://github.com/bcuccioli)",
"Daniel Levin (https://github.com/daniel-levin)",
"Devan Patel (https://github.com/devanp92)",
"Elijah Insua (https://github.com/tmpvar)",
"Eric Mansfield (https://github.com/ericman314)",
"Fabrice Colas (https://github.com/fabricecolas)",
"Favian Contreras (https://github.com/BigFav)",
"Finn Pauls (https://github.com/finnp)",
"Ganga Christopher (https://github.com/gangachris)",
"Guillermo Indalecio Fernández (https://github.com/guillermobox)",
"Huseyn Guliyev (https://github.com/husayt)",
"Jim Garrison (https://github.com/garrison)",
"Kenan Yildirim (https://github.com/KenanY)",
"Kunal Vyas (https://github.com/kv-kunalvyas)",
"Marcus Andre (https://github.com/marcusandre)",
"Max Bruckner (https://github.com/FSMaxB)",
"Mitchel Kelonye (https://github.com/kelonye)",
"Niels Heisterkamp (https://github.com/nheisterkamp)",
"Owen Versteeg (https://github.com/owenversteeg)",
"Pavel Panchekha (https://github.com/pavpanchekha)",
"Pete Corey (https://github.com/pcorey)",
"Rogelio J. Baucells (https://github.com/rjbaucells)",
"Ryan Seys (https://github.com/ryanseys)",
"Sebastien Piquemal (https://github.com/sebpiq)",
"Sergey Romanov (https://github.com/saromanov)",
"Waldir Pimenta (https://github.com/waldyrious)",
"Zach Zibrat (https://github.com/palimpsests)",
"hamadu (https://github.com/hamadu)",
"mtraynham (https://github.com/mtraynham)"
],
"homepage": "http://mathjs.org",
"repository": {
"type": "git",
"url": "https://github.com/josdejong/mathjs.git"
},
"license": "Apache-2.0",
"keywords": [
"math",
"mathematics",
"functions",
"numeric",
"parser",
"expression",
"number",
"bignumber",
"complex",
"matrix",
"unit"
],
"dependencies": {
"decimal.js": "^4.0.2",
"fraction.js": "^2.0.0",
"tiny-emitter": "^1.0.0",
"typed-function": "^0.10.1"
},
"devDependencies": {
"glob": "^5.0.5",
"gulp": "^3.8.11",
"gulp-util": "^3.0.4",
"istanbul": "^0.3.13",
"mkdirp": "^0.5.0",
"mocha": "^2.2.4",
"q": "^1.2.0",
"seed-random": "^2.2.0",
"tar": "^2.1.0",
"uglify-js": "^2.4.20",
"underscore": "^1.8.3",
"webpack": "^1.8.9"
},
"main": "./index",
"scripts": {
"build": "gulp",
"watch": "gulp watch",
"docs": "gulp docs",
"test": "mocha test --recursive",
"coverage": "istanbul cover _mocha -- test --recursive; echo \"\nCoverage report is available at ./coverage/lcov-report/index.html\""
},
"bin": {
"mathjs": "./bin/cli.js"
},
"engines": {
"node": ">= 0.1"
}
}