eyeling 1.5.11 → 1.5.12
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/README.md +3 -4
- package/package.json +1 -4
package/README.md
CHANGED
|
@@ -34,14 +34,13 @@ This link preloads a small “Socrates is Mortal” ruleset:
|
|
|
34
34
|
|
|
35
35
|
- A reasonably recent Node.js (anything modern with `BigInt` support is fine).
|
|
36
36
|
|
|
37
|
-
|
|
38
|
-
## Install (npm)
|
|
37
|
+
### Install (npm)
|
|
39
38
|
|
|
40
39
|
```bash
|
|
41
40
|
npm i eyeling
|
|
42
41
|
```
|
|
43
42
|
|
|
44
|
-
|
|
43
|
+
### CLI (npm)
|
|
45
44
|
|
|
46
45
|
Run on a file:
|
|
47
46
|
|
|
@@ -51,7 +50,7 @@ npx eyeling examples/socrates.n3
|
|
|
51
50
|
|
|
52
51
|
(Or install globally: `npm i -g eyeling` and run `eyeling ...`.)
|
|
53
52
|
|
|
54
|
-
|
|
53
|
+
### JavaScript API (Node)
|
|
55
54
|
|
|
56
55
|
```js
|
|
57
56
|
const { reason } = require('eyeling');
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eyeling",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.12",
|
|
4
4
|
"description": "A minimal Notation3 (N3) reasoner in JavaScript.",
|
|
5
5
|
"main": "./index.js",
|
|
6
6
|
"keywords": [
|
|
@@ -26,9 +26,6 @@
|
|
|
26
26
|
"engines": {
|
|
27
27
|
"node": ">=18"
|
|
28
28
|
},
|
|
29
|
-
"dependencies": {
|
|
30
|
-
"eyeling": "^1.5.10"
|
|
31
|
-
},
|
|
32
29
|
"scripts": {
|
|
33
30
|
"test": "node test/api.test.js"
|
|
34
31
|
}
|