UNPKG

4.2 kBJSONView Raw
1{
2 "name": "mathjs",
3 "version": "7.2.0",
4 "description": "Math.js is an extensive math library for JavaScript and Node.js. It features a flexible expression parser with support for symbolic computation, comes with a large set of built-in functions and constants, and offers an integrated solution to work with different data types like numbers, big numbers, complex numbers, fractions, units, and matrices.",
5 "author": "Jos de Jong <wjosdejong@gmail.com> (https://github.com/josdejong)",
6 "homepage": "https://mathjs.org",
7 "repository": {
8 "type": "git",
9 "url": "https://github.com/josdejong/mathjs.git"
10 },
11 "license": "Apache-2.0",
12 "keywords": [
13 "math",
14 "mathematics",
15 "functions",
16 "numeric",
17 "algebra",
18 "parser",
19 "expression",
20 "number",
21 "bignumber",
22 "complex",
23 "fraction",
24 "matrix",
25 "unit"
26 ],
27 "dependencies": {
28 "complex.js": "^2.0.11",
29 "decimal.js": "^10.2.0",
30 "escape-latex": "^1.2.0",
31 "fraction.js": "^4.0.12",
32 "javascript-natural-sort": "^0.7.1",
33 "seed-random": "^2.2.0",
34 "tiny-emitter": "^2.1.0",
35 "typed-function": "^2.0.0"
36 },
37 "devDependencies": {
38 "@babel/core": "7.11.4",
39 "@babel/plugin-transform-object-assign": "7.10.4",
40 "@babel/preset-env": "7.11.0",
41 "@babel/register": "7.10.5",
42 "babel-loader": "8.1.0",
43 "benchmark": "2.1.4",
44 "codecov": "3.7.2",
45 "del": "5.1.0",
46 "expr-eval": "2.0.2",
47 "fancy-log": "1.3.3",
48 "glob": "7.1.6",
49 "gulp": "4.0.2",
50 "gulp-babel": "8.0.0",
51 "handlebars": "4.7.6",
52 "istanbul": "0.4.5",
53 "jsep": "0.3.5",
54 "karma": "5.1.1",
55 "karma-browserstack-launcher": "1.6.0",
56 "karma-firefox-launcher": "1.3.0",
57 "karma-mocha": "2.0.1",
58 "karma-mocha-reporter": "2.2.5",
59 "karma-webpack": "4.0.2",
60 "math-expression-evaluator": "1.2.22",
61 "mkdirp": "1.0.4",
62 "mocha": "8.0.1",
63 "ndarray": "1.0.19",
64 "ndarray-determinant": "1.0.0",
65 "ndarray-gemm": "1.0.0",
66 "ndarray-ops": "1.2.2",
67 "ndarray-pack": "1.2.1",
68 "numericjs": "1.2.6",
69 "nyc": "15.1.0",
70 "pad-right": "0.2.2",
71 "standard": "14.3.4",
72 "sylvester": "0.0.21",
73 "uglify-js": "3.10.2",
74 "underscore": "1.10.2",
75 "webpack": "4.44.1",
76 "zeros": "1.0.0"
77 },
78 "main": "main/es5",
79 "module": "main/esm",
80 "unpkg": "dist/math.min.js",
81 "jsdelivr": "dist/math.min.js",
82 "files": [
83 "bin",
84 "dist",
85 "docs",
86 "main",
87 "es",
88 "lib",
89 "src",
90 "core.js",
91 "index.js",
92 "number.js",
93 "examples",
94 "LICENSE",
95 "NOTICE",
96 "README.md",
97 "HISTORY.md",
98 "CONTRIBUTING.md"
99 ],
100 "scripts": {
101 "build": "gulp",
102 "build-and-test": "npm run build && npm run test:all && npm run lint",
103 "compile": "gulp compile",
104 "watch": "gulp watch",
105 "lint": "standard --env=mocha --env=worker",
106 "validate:ascii": "gulp validate:ascii",
107 "test": "npm run test:src && npm run lint",
108 "test:src": "mocha test/unit-tests --recursive --require @babel/register --forbid-only",
109 "test:generated": "mocha test/generated-code-tests --recursive --require @babel/register --forbid-only",
110 "test:node": "mocha test/node-tests/*.test.js test/node-tests/**/*.test.js --recursive --forbid-only",
111 "test:all": "npm run test:src && npm run test:generated && npm run test:node",
112 "test:browser": "karma start test/browser-test-config/local-karma.js",
113 "test:browserstack": "karma start test/browser-test-config/browserstack-karma.js",
114 "coverage": "nyc --reporter=lcov --reporter=text-summary mocha test/unit-tests --recursive --require @babel/register && echo \"\nDetailed coverage report is available at ./coverage/lcov-report/index.html\"",
115 "prepublishOnly": "npm run test:all && npm run lint",
116 "prepare": "npm run build",
117 "update-authors": "node ./tools/update-authors.js"
118 },
119 "bin": {
120 "mathjs": "./bin/cli.js"
121 },
122 "engines": {
123 "node": ">= 10"
124 },
125 "bugs": {
126 "url": "https://github.com/josdejong/mathjs/issues"
127 },
128 "directories": {
129 "doc": "./docs",
130 "example": "./examples",
131 "es": "./es",
132 "lib": "./lib",
133 "src": "./src",
134 "test": "./test"
135 },
136 "sideEffects": false
137}