create-recur-tw 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 +10 -0
  2. package/index.js +4 -0
  3. package/package.json +18 -0
package/README.md ADDED
@@ -0,0 +1,10 @@
1
+ # create-recur-tw
2
+
3
+ > **Name-reservation alias.** The canonical package is
4
+ > [`create-recur`](https://www.npmjs.com/package/create-recur).
5
+
6
+ ```bash
7
+ npm create recur@latest
8
+ ```
9
+
10
+ Follow progress at <https://github.com/recur-tw/templates>.
package/index.js ADDED
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env node
2
+ console.log('This is a name-reservation alias for create-recur.')
3
+ console.log('Please use: npm create recur@latest')
4
+ console.log('Follow progress at https://github.com/recur-tw/templates')
package/package.json ADDED
@@ -0,0 +1,18 @@
1
+ {
2
+ "name": "create-recur-tw",
3
+ "version": "0.0.1",
4
+ "description": "Alias placeholder for create-recur. Use `npm create recur` instead.",
5
+ "bin": {
6
+ "create-recur-tw": "index.js"
7
+ },
8
+ "files": [
9
+ "index.js"
10
+ ],
11
+ "keywords": ["recur", "create", "scaffold", "template", "subscription", "payments"],
12
+ "homepage": "https://github.com/recur-tw/templates",
13
+ "repository": {
14
+ "type": "git",
15
+ "url": "git+https://github.com/recur-tw/templates.git"
16
+ },
17
+ "license": "MIT"
18
+ }