This repository was archived by the owner on Apr 12, 2022. It is now read-only.
forked from josdejong/mathjs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.31 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.31 KB
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
{
"name": "ts-lib-mathjs",
"version": "13.0.1",
"description": "Forked from mathjs NodeJS library, and added with more units used in TetraScience supported instruments.",
"repository": {
"type": "git",
"url": "https://github.com/tetrascience/ts-lib-mathjs"
},
"license": "Apache-2.0",
"keywords": [
"math",
"mathematics",
"functions",
"numeric",
"parser",
"expression",
"number",
"bignumber",
"complex",
"matrix",
"unit"
],
"dependencies": {
"decimal.js": "5.0.6",
"fraction.js": "3.2.5",
"complex.js": "2.0.1",
"tiny-emitter": "1.0.2",
"typed-function": "0.10.3"
},
"devDependencies": {
"glob": "7.0.0",
"gulp": "3.9.1",
"gulp-util": "3.0.7",
"istanbul": "0.4.2",
"mkdirp": "0.5.1",
"mocha": "2.4.5",
"q": "1.4.1",
"seed-random": "2.2.0",
"tar": "2.2.1",
"uglify-js": "2.6.1",
"underscore": "1.8.3",
"webpack": "1.12.13"
},
"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"
}
}