eyeling 1.5.37 → 1.5.39
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/examples/list-iterate.n3 +38 -0
- package/examples/oslo-steps-library-scholarly.n3 +288 -0
- package/examples/oslo-steps-workflow-composition.n3 +192 -217
- package/examples/output/list-iterate.n3 +131 -0
- package/examples/output/oslo-steps-library-scholarly.n3 +1292 -0
- package/examples/output/oslo-steps-workflow-composition.n3 +96 -56
- package/eyeling.js +621 -337
- package/package.json +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eyeling",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.39",
|
|
4
4
|
"description": "A minimal Notation3 (N3) reasoner in JavaScript.",
|
|
5
5
|
"main": "./index.js",
|
|
6
6
|
"keywords": [
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"test:examples": "node test/examples.test.js",
|
|
35
35
|
"test:package": "node test/package.test.js",
|
|
36
36
|
"test": "npm run test:packlist && npm run test:api && npm run test:examples",
|
|
37
|
-
"preversion": "npm test",
|
|
37
|
+
"preversion": "prettier -w eyeling.js && npm test",
|
|
38
38
|
"postversion": "git push origin HEAD --follow-tags"
|
|
39
39
|
}
|
|
40
40
|
}
|