eyeleng 1.0.2 → 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
 
@@ -27,4 +27,6 @@ Open [Playground](https://eyereasoner.github.io/eyeleng/playground) for a self-c
27
27
 
28
28
  The examples live in [examples/](./examples/) at one level. Draft SRL examples are named `spec-*.srl`, RDF Rules syntax examples use `.ttl`, and deep taxonomy benchmarks are named `deep-taxonomy-*.srl`.
29
29
 
30
- Status: Eyeleng runs a growing implementation of the SHACL 1.2 Rules draft surface. It is not a conformance claim and does not implement SHACL validation.
30
+ Status: Eyeleng runs a growing implementation of the SHACL 1.2 Rules draft surface. It does not implement SHACL validation.
31
+
32
+ The official Eyeleng EARL 1.0 test report for the W3C SHACL 1.2 Rules manifest is in [reports/w3c-shacl12-rules-earl.ttl](./reports/w3c-shacl12-rules-earl.ttl). It records 88/88 passing tests for `https://w3c.github.io/data-shapes/shacl12-test-suite/tests/rules/manifest-rules.ttl`.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "eyeleng",
3
- "version": "1.0.2",
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"
@@ -25,6 +25,7 @@
25
25
  "dist",
26
26
  "src",
27
27
  "tools",
28
+ "reports",
28
29
  "test",
29
30
  "examples"
30
31
  ],