Assuming that by "it" you mean a list of the actions and the points rewarded for them you'd have to write a custom page module. The point values are stored in the database table qa_options and can be retrieved with a query like this:
SELECT title,content
FROM qa_options
WHERE title LIKE 'points_%';
The description text of the options is stored in the file qa-include/lang/qa-lang-options.php and can be retrieved like this:
qa_lang('options/OPTION_TITLE');
For example, on an English language Q2A site a code snippet
$opt_title = 'points_a_selected';
$opt_text = qa_lang("options/${opt_title}");
will put the following string (including the trailing colon) in the variable $opt_text:
Having your answer selected as the best:
To show a points table you'd iterate over the values returned by the database query, look up the corresponding description for each option title, and then output description and points.
$query = '...';
$points_options = qa_db_read_all_assoc(qa_db_query_sub($query));
foreach ($points_options as $opt) {
$descr = qa_lang("options/${opt['title']}");
$points = $opt['content'];
// output $descr and $points however you see fit
}
If you just want a simple table to display the points (without automatically filling in the values from the backend) you could create a page via Administration center - Pages and set a manually crafted HTML table as the content for that page. The basic structure of such a table would look like this:
<table>
<tr>
<td>Foo points:</td>
<td>23</td>
</tr>
<tr>
<td>Bar points:</td>
<td>42</td>
</tr>
...
</table>
or, in more compact notation, like this:
<table>
<tr><td>Foo points:</td><td>23</td></tr>
<tr><td>Bar points:</td><td>42</td></tr>
...
</table>
Beware, though, that you will have to update that table manually whenever you make changes to your points system.