dragon-graph-lib 0.1.0

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 ADDED
@@ -0,0 +1,11 @@
1
+ Dragon Graph Library
2
+ ====================
3
+
4
+ This is a JS library for creating node/graph editors.
5
+
6
+ Similar functionality as Rete.js but less complicated to use.
7
+
8
+ License
9
+ -------
10
+
11
+ GPLv3+ see COPYING
package/package.json ADDED
@@ -0,0 +1,30 @@
1
+ {
2
+ "name": "dragon-graph-lib",
3
+ "version": "0.1.0",
4
+ "description": "JS Library to create node-based editors",
5
+ "homepage": "https://gitlab.com/mattbas/dragon-graph-lib",
6
+ "bugs": {
7
+ "url": "https://gitlab.com/mattbas/dragon-graph-lib/-/issues"
8
+ },
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "git+https://gitlab.com/mattbas/dragon-graph-lib.git"
12
+ },
13
+ "license": "GPLv3+",
14
+ "author": "Mattia Basaglia",
15
+ "files": [
16
+ "src"
17
+ ],
18
+ "keywords": [
19
+ "dataflow",
20
+ "visual programming",
21
+ "node editor",
22
+ "rete"
23
+ ],
24
+ "scripts": {
25
+ "build": "./build.py",
26
+ "dev": "watch -n 1 ./build.py",
27
+ "release": "npm run build && npm run publish && npm version patch",
28
+ "publish": "npm publish --access public"
29
+ }
30
+ }