-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 969 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 969 Bytes
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
{
"name": "mathicall",
"version": "1.0.0",
"description": "A javascript maths library designed for simulation and data processing",
"main": "build/Mathicall.module.js",
"type": "module",
"directories": {
"test": "test"
},
"dependencies": {},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.13.8",
"benchmark": "^2.1.4",
"jest": "^26.6.3",
"microtime": "^3.0.0",
"rollup": "^2.44.0",
"rollup-plugin-terser": "^7.0.2",
"terser": "^5.14.2"
},
"scripts": {
"test": "jest"
},
"jest": {
"testRegex": "./test/unit/.*.js$",
"testEnvironment": "jest-environment-node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PatGleeson101/mathicall.js.git"
},
"author": "Patrick Gleeson",
"license": "MIT",
"bugs": {
"url": "https://github.com/PatGleeson101/mathicall.js/issues"
},
"homepage": "https://github.com/PatGleeson101/mathicall.js#readme"
}