lulz 1.0.0 → 1.0.2
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 +16 -3
package/package.json
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lulz",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "A reactive dataflow system inspired by Visual Programming, FFmpeg filtergraph and Node-RED",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"scripts": {
|
|
8
8
|
"test": "node --test",
|
|
9
|
+
"save": "git add .; git commit -m 'Updated Release'; npm version patch; npm publish; git push --follow-tags;",
|
|
9
10
|
"examples": "node examples.js"
|
|
10
11
|
},
|
|
11
12
|
"keywords": [
|
|
@@ -15,6 +16,18 @@
|
|
|
15
16
|
"pipeline",
|
|
16
17
|
"node-red"
|
|
17
18
|
],
|
|
18
|
-
"author": "",
|
|
19
|
-
"license": "MIT"
|
|
19
|
+
"author": "catpea (https://github.com/catpea)",
|
|
20
|
+
"license": "MIT",
|
|
21
|
+
"repository": {
|
|
22
|
+
"type": "git",
|
|
23
|
+
"url": "git+https://github.com/catpea/lulz.git"
|
|
24
|
+
},
|
|
25
|
+
"bugs": {
|
|
26
|
+
"url": "https://github.com/catpea/lulz/issues"
|
|
27
|
+
},
|
|
28
|
+
"homepage": "https://catpea.github.io/lulz",
|
|
29
|
+
"funding": {
|
|
30
|
+
"type": "github",
|
|
31
|
+
"url": "https://github.com/sponsors/catpea"
|
|
32
|
+
}
|
|
20
33
|
}
|