-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
56 lines (56 loc) · 1.38 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
{
"name": "eigen",
"version": "0.2.2-simplicalcholesky",
"description": "Eigen-js is a port of the [Eigen](https://eigen.tuxfamily.org/) C++ linear algebra library",
"main": "dist/index.js",
"types": "src/eigen.d.ts",
"files": [
"dist/index.js",
"src/eigen.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/BertrandBev/eigen-js.git"
},
"author": "Bertrand <[email protected]>",
"license": "MIT",
"keywords": [
"linear",
"algebra",
"eigen",
"matrix",
"optimisation"
],
"homepage": "http://TODO",
"devDependencies": {
"@babel/core": "^7.7.5",
"@babel/plugin-syntax-dynamic-import": "^7.7.4",
"@babel/preset-env": "^7.7.6",
"@types/jest": "^29.5.3",
"arraybuffer-loader": "^1.0.8",
"babel-loader": "^8.0.6",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"exports-loader": "^0.7.0",
"file-loader": "^5.0.2",
"jest": "^29.6.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6",
"webpack": "^4.41.3",
"webpack-cli": "^3.3.10"
},
"scripts": {
"build": "webpack --mode production",
"test": "npx jest --watchAll --verbose"
},
"dependencies": {
"@types/hashmap": "^2.3.1",
"hashmap": "^2.4.0"
},
"bugs": {
"url": "https://github.com/BertrandBev/eigen-js/issues"
},
"directories": {
"lib": "lib"
}
}