-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
54 lines (54 loc) · 1.21 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
{
"name": "nblas",
"version": "2.1.13",
"description": "C++ bindings for all single- and double-precision CBLAS (Basic Linear Algebra Subprograms) 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"
],
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"**/*.d.ts",
"dist/**",
"docs/**",
"coverage/**",
"src/*.spec.ts",
"src/index.cc"
],
"reporter": [
"lcov"
],
"all": true
},
"homepage": "https://github.com/nperf/nblas#readme",
"repository": "github:nperf/nblas",
"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
}