lulz 1.0.3 → 2.0.1

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