-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.17 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
{
"name": "@smockle/matrix",
"version": "0.0.0-development",
"description": "Single and multi dimensional matrices and matrix functions.",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"test": "NODE_OPTIONS='--no-warnings=ExperimentalWarning --experimental-vm-modules' npx jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smockle/matrix.git"
},
"author": "Clay Miller <[email protected]> (https://smockle.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/smockle/matrix/issues"
},
"homepage": "https://github.com/smockle/matrix#readme",
"dependencies": {
"lodash-es": "^4.17.21",
"mathjs": "^14.0.1"
},
"devDependencies": {
"@types/lodash-es": "^4.17.12",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"jest": {
"preset": "ts-jest/presets/default-esm",
"collectCoverage": true,
"extensionsToTreatAsEsm": [
".ts"
],
"roots": [
"<rootDir>/src"
],
"testRegex": "\\.test\\.ts$",
"moduleNameMapper": {
"^(\\.{1,2}/.*)\\.js$": "$1",
"^@/(.*)\\.js$": "<rootDir>/src/$1"
}
}
}