-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
68 lines (68 loc) · 1.79 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
{
"name": "math-expressions",
"description": "Perform basic equality testing and symbolic computations on mathematical expressions involving transcendental functions",
"version": "2.0.0-alpha73",
"author": {
"name": "Jim Fowler",
"email": "[email protected]",
"url": "http://kisonecat.com/"
},
"scripts": {
"build": "rollup -c",
"test:watch": "jest --watch",
"test": "jest quick_",
"test:all": "jest",
"lint": "jshint lib/*.js spec/*.js",
"prettier:format": "prettier --write .",
"prettier:check": "prettier --check ."
},
"repository": {
"type": "git",
"url": "https://github.com/kisonecat/math-expressions"
},
"files": [
"/build"
],
"exports": {
".": {
"import": "./build/math-expressions.js",
"require": "./build/math-expressions_umd.js"
}
},
"private": false,
"dependencies": {
"@babel/cli": "^7.25.7",
"babel-upgrade": "^1.0.1",
"mathjs": "^13.2.0",
"number-theory": "1.1.0",
"numeric": "1.2.6",
"seedrandom": "^3.0.5",
"xml-parser": "1.2.1"
},
"devDependencies": {
"@babel/cli": "^7.25.7",
"@babel/core": "^7.25.7",
"@babel/node": "^7.25.7",
"@babel/preset-env": "^7.25.7",
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^29.7.0",
"babel-loader": "^9.2.1",
"jest": "^29.7.0",
"jshint": "^2.13.6",
"prettier": "^3.3.3",
"regenerator-runtime": "^0.14.1",
"rollup": "^2.79.2",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-polyfill-node": "^0.13.0"
},
"jest": {
"testEnvironment": "node",
"setupFilesAfterEnv": [
"./spec/setup.js"
]
},
"license": "(GPL-3.0 OR Apache-2.0)"
}