Skip to content

Commit 6c6fd79

Browse files
committed
build: add package meta data
--- 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: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 6803252 commit 6c6fd79

File tree

5 files changed

+590
-5
lines changed

5 files changed

+590
-5
lines changed

lib/node_modules/@stdlib/number/float32/base/sub/package.json

Lines changed: 118 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,5 +65,122 @@
6565
"single",
6666
"single-precision"
6767
],
68-
"__stdlib__": {}
68+
"__stdlib__": {
69+
"scaffold": {
70+
"$schema": "math/base@v1.0",
71+
"base_alias": "sub",
72+
"alias": "sub",
73+
"pkg_desc": "perform subtraction",
74+
"desc": "performs subtraction",
75+
"short_desc": "result",
76+
"parameters": [
77+
{
78+
"name": "x",
79+
"desc": "first input value",
80+
"type": {
81+
"javascript": "number",
82+
"jsdoc": "number",
83+
"c": "float",
84+
"dtype": "float32"
85+
},
86+
"domain": [
87+
{
88+
"min": "-infinity",
89+
"max": "infinity"
90+
}
91+
],
92+
"rand": {
93+
"prng": "random/base/uniform",
94+
"parameters": [
95+
-10,
96+
10
97+
]
98+
},
99+
"example_values": [
100+
1,
101+
27,
102+
0,
103+
10,
104+
9,
105+
8,
106+
1,
107+
125,
108+
20,
109+
11,
110+
12,
111+
3,
112+
2,
113+
15,
114+
16,
115+
17,
116+
125,
117+
19,
118+
101,
119+
21
120+
]
121+
},
122+
{
123+
"name": "y",
124+
"desc": "second input value",
125+
"type": {
126+
"javascript": "number",
127+
"jsdoc": "number",
128+
"c": "float",
129+
"dtype": "float32"
130+
},
131+
"domain": [
132+
{
133+
"min": "-infinity",
134+
"max": "infinity"
135+
}
136+
],
137+
"rand": {
138+
"prng": "random/base/uniform",
139+
"parameters": [
140+
-10,
141+
10
142+
]
143+
},
144+
"example_values": [
145+
51,
146+
2,
147+
10,
148+
14,
149+
90,
150+
88,
151+
1,
152+
12,
153+
120,
154+
71,
155+
62,
156+
31,
157+
2,
158+
45,
159+
26,
160+
37,
161+
25,
162+
59,
163+
11,
164+
41
165+
]
166+
}
167+
],
168+
"output_policy": "same",
169+
"returns": {
170+
"desc": "result",
171+
"type": {
172+
"javascript": "number",
173+
"jsdoc": "number",
174+
"c": "float",
175+
"dtype": "float32"
176+
}
177+
},
178+
"keywords": [
179+
"subtraction",
180+
"subtract",
181+
"difference"
182+
],
183+
"extra_keywords": []
184+
}
185+
}
69186
}

lib/node_modules/@stdlib/number/float64/base/sub/package.json

Lines changed: 118 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,5 +64,122 @@
6464
"double",
6565
"double-precision"
6666
],
67-
"__stdlib__": {}
67+
"__stdlib__": {
68+
"scaffold": {
69+
"$schema": "math/base@v1.0",
70+
"base_alias": "sub",
71+
"alias": "sub",
72+
"pkg_desc": "perform subtraction",
73+
"desc": "performs subtraction",
74+
"short_desc": "result",
75+
"parameters": [
76+
{
77+
"name": "x",
78+
"desc": "first input value",
79+
"type": {
80+
"javascript": "number",
81+
"jsdoc": "number",
82+
"c": "double",
83+
"dtype": "float64"
84+
},
85+
"domain": [
86+
{
87+
"min": "-infinity",
88+
"max": "infinity"
89+
}
90+
],
91+
"rand": {
92+
"prng": "random/base/uniform",
93+
"parameters": [
94+
-10,
95+
10
96+
]
97+
},
98+
"example_values": [
99+
1,
100+
27,
101+
0,
102+
10,
103+
9,
104+
8,
105+
1,
106+
125,
107+
20,
108+
11,
109+
12,
110+
3,
111+
2,
112+
15,
113+
16,
114+
17,
115+
125,
116+
19,
117+
101,
118+
21
119+
]
120+
},
121+
{
122+
"name": "y",
123+
"desc": "second input value",
124+
"type": {
125+
"javascript": "number",
126+
"jsdoc": "number",
127+
"c": "double",
128+
"dtype": "float64"
129+
},
130+
"domain": [
131+
{
132+
"min": "-infinity",
133+
"max": "infinity"
134+
}
135+
],
136+
"rand": {
137+
"prng": "random/base/uniform",
138+
"parameters": [
139+
-10,
140+
10
141+
]
142+
},
143+
"example_values": [
144+
51,
145+
2,
146+
10,
147+
14,
148+
90,
149+
88,
150+
1,
151+
12,
152+
120,
153+
71,
154+
62,
155+
31,
156+
2,
157+
45,
158+
26,
159+
37,
160+
25,
161+
59,
162+
11,
163+
41
164+
]
165+
}
166+
],
167+
"output_policy": "same",
168+
"returns": {
169+
"desc": "result",
170+
"type": {
171+
"javascript": "number",
172+
"jsdoc": "number",
173+
"c": "double",
174+
"dtype": "float64"
175+
}
176+
},
177+
"keywords": [
178+
"subtraction",
179+
"subtract",
180+
"difference"
181+
],
182+
"extra_keywords": []
183+
}
184+
}
68185
}

lib/node_modules/@stdlib/number/uint16/base/sub/package.json

Lines changed: 118 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,5 +64,122 @@
6464
"integer",
6565
"c"
6666
],
67-
"__stdlib__": {}
67+
"__stdlib__": {
68+
"scaffold": {
69+
"$schema": "math/base@v1.0",
70+
"base_alias": "sub",
71+
"alias": "sub",
72+
"pkg_desc": "perform subtraction",
73+
"desc": "performs subtraction",
74+
"short_desc": "subtraction",
75+
"parameters": [
76+
{
77+
"name": "x",
78+
"desc": "first input value",
79+
"type": {
80+
"javascript": "number",
81+
"jsdoc": "integer",
82+
"c": "uint16_t",
83+
"dtype": "uint16"
84+
},
85+
"domain": [
86+
{
87+
"min": 0,
88+
"max": "infinity"
89+
}
90+
],
91+
"rand": {
92+
"prng": "random/base/discrete-uniform",
93+
"parameters": [
94+
0,
95+
10
96+
]
97+
},
98+
"example_values": [
99+
1,
100+
27,
101+
0,
102+
10,
103+
9,
104+
8,
105+
1,
106+
125,
107+
20,
108+
11,
109+
12,
110+
3,
111+
2,
112+
15,
113+
16,
114+
17,
115+
125,
116+
19,
117+
101,
118+
21
119+
]
120+
},
121+
{
122+
"name": "y",
123+
"desc": "second input value",
124+
"type": {
125+
"javascript": "number",
126+
"jsdoc": "integer",
127+
"c": "uint16_t",
128+
"dtype": "uint16"
129+
},
130+
"domain": [
131+
{
132+
"min": 0,
133+
"max": "infinity"
134+
}
135+
],
136+
"rand": {
137+
"prng": "random/base/discrete-uniform",
138+
"parameters": [
139+
0,
140+
10
141+
]
142+
},
143+
"example_values": [
144+
51,
145+
2,
146+
10,
147+
14,
148+
90,
149+
88,
150+
1,
151+
12,
152+
120,
153+
71,
154+
62,
155+
31,
156+
2,
157+
45,
158+
26,
159+
37,
160+
25,
161+
59,
162+
11,
163+
41
164+
]
165+
}
166+
],
167+
"output_policy": "same",
168+
"returns": {
169+
"desc": "result",
170+
"type": {
171+
"javascript": "number",
172+
"jsdoc": "integer",
173+
"c": "uint16_t",
174+
"dtype": "uint16"
175+
}
176+
},
177+
"keywords": [
178+
"subtraction",
179+
"subtract",
180+
"difference"
181+
],
182+
"extra_keywords": []
183+
}
184+
}
68185
}

0 commit comments

Comments
 (0)