@beauraines/rtm-cli 1.5.6 → 1.5.7

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.
@@ -0,0 +1,11 @@
1
+ # To get started with Dependabot version updates, you'll need to specify which
2
+ # package ecosystems to update and where the package manifests are located.
3
+ # Please see the documentation for all configuration options:
4
+ # https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5
+
6
+ version: 2
7
+ updates:
8
+ - package-ecosystem: "npm" # See documentation for possible values
9
+ directory: "/" # Location of package manifests
10
+ schedule:
11
+ interval: "weekly"
package/README.md CHANGED
@@ -2,16 +2,23 @@ Remember The Milk Command Line Interface
2
2
  ========================================
3
3
 
4
4
  **node module:** [rtm-cli](https://www.npmjs.com/package/rtm-cli)<br />
5
- **GitHub repo:** [dwaring87/rtm-cli](https://github.com/dwaring87/rtm-cli)
5
+ **GitHub repo:** [dwaring87/rtm-cli](https://github.com/beauraines/rtm-cli)
6
6
 
7
7
  ---
8
8
 
9
9
  This Node module provides a command line interface, written in JavaScript,
10
10
  for the popular [Remember the Milk](https://www.rememberthemilk.com/) task list
11
- manager.
11
+ manager.
12
12
 
13
- ![](https://raw.githubusercontent.com/dwaring87/rtm-cli/master/screens/ls.png)
13
+ ![](https://raw.githubusercontent.com/beauraines/rtm-cli/master/screens/ls.png)
14
14
 
15
+ This is a fork of [dwaring87/rtm-cli](https://github.com/dwaring87/rtm-cli) so that I can maintain, modernize and add features. Your contributions are welcome!
16
+
17
+ This fork and [beauraines/rtm-api](https://github.com/beauraines/rtm-api) include
18
+
19
+ 1. performance improvements
20
+ 2. rewriting to use Promises
21
+ 3. additional task attributes like subtasks and recurrence
15
22
 
16
23
  ## Installation
17
24
 
@@ -21,7 +28,7 @@ If you already have [Node](https://nodejs.org) installed, this program can be
21
28
  installed via `npm`:
22
29
 
23
30
  ```shell
24
- npm install -g rtm-cli
31
+ npm install -g @beauraines/rtm-cli
25
32
  ```
26
33
 
27
34
  which will install the executable `rtm` into your `$PATH`.
@@ -32,7 +39,7 @@ which will install the executable `rtm` into your `$PATH`.
32
39
 
33
40
  Standalone executables, that do not require a pre-existing installation of Node,
34
41
  are available in the [Releases](https://github.com/dwaring87/rtm-cli/releases)
35
- page.
42
+ page. **I do not intend to continue this in my fork.**
36
43
 
37
44
 
38
45
  ## Usage
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@beauraines/rtm-cli",
3
- "version": "1.5.6",
3
+ "version": "1.5.7",
4
4
  "description": "RTM CLI",
5
5
  "keywords": [
6
6
  "rtm",
@@ -24,8 +24,7 @@
24
24
  "type": "git",
25
25
  "url": "git+https://github.com/beauraines/rtm-cli.git"
26
26
  },
27
- "author": "David Waring <dev@davidwaring.net> (https://davidwaring.net)",
28
- "contributors": ["Beau Raines <beau.raines@gmail.com>"],
27
+ "author": "Beau Raines <beau.raines@gmail.com>",
29
28
  "license": "MIT",
30
29
  "bugs": {
31
30
  "url": "https://github.com/beauraines/rtm-cli/issues"