hyperspan 0.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.
Files changed (3) hide show
  1. package/README.md +5 -0
  2. package/index.js +4 -0
  3. package/package.json +22 -0
package/README.md ADDED
@@ -0,0 +1,5 @@
1
+ # Hyperspan
2
+
3
+ The simple JS framework.
4
+
5
+ https://www.hyperspan.dev
package/index.js ADDED
@@ -0,0 +1,4 @@
1
+ // Placeholder for hyperspan.dev
2
+ module.exports = {
3
+ url: "https://www.hyperspan.dev",
4
+ };
package/package.json ADDED
@@ -0,0 +1,22 @@
1
+ {
2
+ "name": "hyperspan",
3
+ "version": "0.0.1",
4
+ "description": "Simple full-stack JS framework",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1"
8
+ },
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "git+https://github.com/vlucas/hyperspan.git"
12
+ },
13
+ "keywords": [
14
+ "hyperspan"
15
+ ],
16
+ "author": "Vance Lucas",
17
+ "license": "BSD-3-Clause",
18
+ "bugs": {
19
+ "url": "https://github.com/vlucas/hyperspan/issues"
20
+ },
21
+ "homepage": "https://github.com/vlucas/hyperspan#readme"
22
+ }