-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
36 lines (36 loc) · 968 Bytes
/
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
{
"name": "nlapack",
"version": "2.0.9",
"description": "C++ bindings for all single- and double-precision CLAPACK (Linear Algebra Package) routines.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"docs": "typedoc --out docs --exclude \"**/*+(.spec).ts\" src && touch docs/.nojekyll",
"build": "node-gyp rebuild -j max",
"prepublishOnly": "rm -rf dist && tsc",
"install": "npm run build"
},
"files": [
"dist",
"src/index.cc",
"routines",
"lib",
"binding.gyp"
],
"homepage": "https://github.com/nperf/nlapack#readme",
"repository": "github:nperf/nlapack",
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^18.15.11",
"jest": "^29.5.0",
"prettier": "^2.8.7",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typedoc": "^0.24.4",
"typescript": "^5.0.4"
},
"author": "Mateo Gianolio",
"license": "MIT",
"gypfile": true
}