lulz 1.0.1 → 1.0.3

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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +16 -3
package/README.md CHANGED
@@ -11,7 +11,7 @@ npm install lulz
11
11
  ## Quick Start
12
12
 
13
13
  ```javascript
14
- const { flow, Inject, Debug } = require('./index');
14
+ import { flow, Inject, Debug } from 'lulz';
15
15
 
16
16
  const app = flow([
17
17
  [Inject({ payload: 'Hello World!' }), Debug({ name: 'output' })],
package/package.json CHANGED
@@ -1,11 +1,12 @@
1
1
  {
2
2
  "name": "lulz",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
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
  }