rosclaw 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 +9 -0
  2. package/index.js +6 -0
  3. package/package.json +19 -0
package/README.md ADDED
@@ -0,0 +1,9 @@
1
+ # rosclaw
2
+
3
+ Placeholder package — name reserved on npm.
4
+
5
+ More to come.
6
+
7
+ ## License
8
+
9
+ MIT
package/index.js ADDED
@@ -0,0 +1,6 @@
1
+ /**
2
+ * rosclaw - placeholder package
3
+ * This package reserves the "rosclaw" name on npm.
4
+ */
5
+
6
+ module.exports = { name: 'rosclaw' };
package/package.json ADDED
@@ -0,0 +1,19 @@
1
+ {
2
+ "name": "rosclaw",
3
+ "version": "0.0.1",
4
+ "description": "Placeholder package for rosclaw (name reserved)",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "echo \"No tests yet\" && exit 0"
8
+ },
9
+ "keywords": [
10
+ "rosclaw",
11
+ "placeholder"
12
+ ],
13
+ "author": "",
14
+ "license": "MIT",
15
+ "repository": {
16
+ "type": "git",
17
+ "url": ""
18
+ }
19
+ }