eyeleng 1.0.12 → 1.0.13

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eyeleng",
3
- "version": "1.0.12",
3
+ "version": "1.0.13",
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",
@@ -36,16 +36,17 @@
36
36
  "build": "node tools/bundle.js",
37
37
  "pretest": "node tools/bundle.js",
38
38
  "test": "node test/run.js",
39
+ "test:api": "node test/api.test.js",
40
+ "test:examples": "node test/examples.test.js",
39
41
  "preversion": "npm test",
40
42
  "version": "node tools/bundle.js",
41
43
  "postversion": "git push origin HEAD --follow-tags",
42
44
  "w3c:rules": "node tools/w3c-shacl12-rules.js",
45
+ "w3c:rules:json": "node tools/w3c-shacl12-rules.js --json",
46
+ "w3c:rules:earl": "node tools/w3c-shacl12-rules.js --earl",
43
47
  "w3c:rdf": "node tools/w3c-rdf.js",
44
48
  "w3c:rdf:json": "node tools/w3c-rdf.js --json",
45
49
  "w3c:rdf:earl": "node tools/w3c-rdf.js --earl",
46
- "w3c:all": "npm run w3c:rules && npm run w3c:rdf",
47
- "w3c:rules:json": "node tools/w3c-shacl12-rules.js --json",
48
- "w3c:rules:earl": "node tools/w3c-shacl12-rules.js --earl",
49
50
  "bench": "node tools/perf-bench.js --check",
50
51
  "bench:report": "node tools/perf-bench.js --report",
51
52
  "bench:update": "node tools/perf-bench.js --update"