forked from josdejong/mathjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.66 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
{
"name": "mathjs",
"version": "1.2.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 <wjosdejong@gmail.com> (https://github.com/josdejong)",
"contributors": [
"Favian Contreras (https://github.com/BigFav)",
"Sebastien Piquemal (https://github.com/sebpiq)",
"Rogelio J. Baucells (https://github.com/rjbaucells)",
"Guillermo Indalecio Fernández (https://github.com/guillermobox)",
"Huseyn Guliyev (https://github.com/husayt)",
"Daniel Levin (https://github.com/daniel-levin)",
"Niels Heisterkamp (https://github.com/nheisterkamp)",
"Fabrice Colas (https://github.com/fabricecolas)",
"Finn Pauls (https://github.com/finnp)",
"Marcus Andre (https://github.com/marcusandre)",
"Andy Pan (https://github.com/andy0130tw)",
"Bart Kiers (https://github.com/bkiers)",
"Jim Garrison (https://github.com/garrison)",
"Bryan Cuccioli (https://github.com/bcuccioli)",
"Pavel Panchekha (https://github.com/pavpanchekha)",
"hamadu (https://github.com/hamadu)",
"Waldir Pimenta (https://github.com/waldyrious)",
"Mitchel Kelonye (https://github.com/kelonye)",
"mtraynham (https://github.com/mtraynham)",
"Owen Versteeg (https://github.com/owenversteeg)",
"Ryan Seys (https://github.com/ryanseys)",
"Elijah Insua (https://github.com/tmpvar)",
"Rogelio J. Baucells (https://github.com/rjbaucells)",
"Zach Zibrat (https://github.com/palimpsests)"
],
"homepage": "http://mathjs.org",
"repository": {
"type": "git",
"url": "https://github.com/josdejong/mathjs.git"
},
"keywords": [
"math",
"mathematics",
"functions",
"numeric",
"parser",
"expression",
"number",
"bignumber",
"complex",
"matrix",
"unit"
],
"dependencies": {
"decimal.js": "~4.0.1"
},
"devDependencies": {
"webpack": "latest",
"mocha": "latest",
"istanbul": "latest",
"numbers": "latest",
"uglify-js": "latest",
"underscore": "latest",
"seed-random": "latest",
"gulp": "latest",
"gulp-util": "latest",
"exec": "latest",
"glob": "latest",
"mkdirp": "latest"
},
"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"
}
}