eyeleng 1.0.3 → 1.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/HANDBOOK.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Eyeleng Handbook
2
2
 
3
- This handbook explains Eyeleng both as JavaScript code and as a reasoning machine. It is written for a computer science student who knows basic programming, data structures, and logic, but may not yet know RDF, SHACL Rules, or forward-chaining reasoners.
3
+ This handbook explains Eyeleng — short for **EYE Logic Engine** — both as JavaScript code and as a reasoning machine. It is written for a computer science student who knows basic programming, data structures, and logic, but may not yet know RDF, SHACL Rules, or forward-chaining reasoners.
4
4
 
5
5
  The chapters are meant to be read linearly. Each chapter also stands on its own, so you can jump directly to the parser, the evaluator, dependency analysis, imports, or the command-line interface when you need that part.
6
6
 
@@ -41,7 +41,7 @@ The chapters are meant to be read linearly. Each chapter also stands on its own,
41
41
 
42
42
  ## 1. What Eyeleng Is
43
43
 
44
- Eyeleng is a compact JavaScript implementation of the Shape Rules Language, or SRL, from the SHACL 1.2 Rules draft.
44
+ Eyeleng stands for **EYE Logic Engine**. It is a compact JavaScript implementation of SHACL 1.2 Rules, including the Shape Rules Language, or SRL, and RDF Rules syntax front-ends.
45
45
 
46
46
  A tiny Eyeleng program looks like this:
47
47
 
package/README.md CHANGED
@@ -3,7 +3,7 @@
3
3
  [![npm version](https://img.shields.io/npm/v/eyeleng.svg)](https://www.npmjs.com/package/eyeleng)
4
4
  [![DOI](https://img.shields.io/badge/DOI-10.5281%2Fzenodo.20342577-blue.svg)](https://doi.org/10.5281/zenodo.20342577)
5
5
 
6
- `eyeleng` is a JavaScript implementation of SHACL 1.2 Rules, including SRL and RDF Rules syntax front-ends.
6
+ `eyeleng` stands for **EYE Logic Engine**. Eyeleng is a JavaScript implementation of SHACL 1.2 Rules, including SRL and RDF Rules syntax front-ends.
7
7
 
8
8
  ## Quick start
9
9
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "eyeleng",
3
- "version": "1.0.3",
4
- "description": "A JavaScript implementation of SHACL Rules, including SRL and RDF Rules syntax front-ends.",
3
+ "version": "1.0.4",
4
+ "description": "The EYE Logic Engine: a JavaScript implementation of SHACL Rules, including SRL and RDF Rules syntax front-ends.",
5
5
  "keywords": [
6
6
  "SRL",
7
7
  "reasoner"
@@ -22,7 +22,7 @@
22
22
  <https://github.com/eyereasoner/eyeleng>
23
23
  a earl:Software, doap:Project, foaf:Agent ;
24
24
  dct:title "Eyeleng"@en ;
25
- dct:description "A JavaScript implementation of SHACL 1.2 Rules, including SRL and RDF Rules syntax front-ends."@en ;
25
+ dct:description "The EYE Logic Engine: a JavaScript implementation of SHACL 1.2 Rules, including SRL and RDF Rules syntax front-ends."@en ;
26
26
  doap:name "eyeleng" ;
27
27
  foaf:homepage <https://github.com/eyereasoner/eyeleng> .
28
28