Skip to content

Commit cc7283a

Browse files
committed
chore: add package.json
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: passed - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 0995395 commit cc7283a

File tree

1 file changed

+74
-0
lines changed

1 file changed

+74
-0
lines changed
Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
{
2+
"name": "@stdlib/blas/base/ctpmv",
3+
"version": "0.0.0",
4+
"description": "Performs one of the matrix-vector operations `x = A*x`, or `x = A**T*x`, or `x = A**H*x`, where `x` is an `N` element vector and `A` is an `N` by `N` unit, or non-unit, upper or lower triangular matrix, supplied in packed form.",
5+
"license": "Apache-2.0",
6+
"author": {
7+
"name": "The Stdlib Authors",
8+
"url": "https://github.com/stdlib-js/stdlib/graphs/contributors"
9+
},
10+
"contributors": [
11+
{
12+
"name": "The Stdlib Authors",
13+
"url": "https://github.com/stdlib-js/stdlib/graphs/contributors"
14+
}
15+
],
16+
"main": "./lib",
17+
"browser": "./lib/main.js",
18+
"directories": {
19+
"benchmark": "./benchmark",
20+
"doc": "./docs",
21+
"example": "./examples",
22+
"lib": "./lib",
23+
"test": "./test"
24+
},
25+
"types": "./docs/types",
26+
"scripts": {},
27+
"homepage": "https://github.com/stdlib-js/stdlib",
28+
"repository": {
29+
"type": "git",
30+
"url": "git://github.com/stdlib-js/stdlib.git"
31+
},
32+
"bugs": {
33+
"url": "https://github.com/stdlib-js/stdlib/issues"
34+
},
35+
"dependencies": {},
36+
"devDependencies": {},
37+
"engines": {
38+
"node": ">=0.10.0",
39+
"npm": ">2.7.0"
40+
},
41+
"os": [
42+
"aix",
43+
"darwin",
44+
"freebsd",
45+
"linux",
46+
"macos",
47+
"openbsd",
48+
"sunos",
49+
"win32",
50+
"windows"
51+
],
52+
"keywords": [
53+
"stdlib",
54+
"stdmath",
55+
"mathematics",
56+
"math",
57+
"blas",
58+
"level 2",
59+
"ctpmv",
60+
"hermitian",
61+
"linear",
62+
"algebra",
63+
"subroutines",
64+
"array",
65+
"ndarray",
66+
"complex",
67+
"complex64",
68+
"complex64array",
69+
"float",
70+
"float32",
71+
"single",
72+
"float32array"
73+
]
74+
}

0 commit comments

Comments
 (0)