@tryghost/limit-service 1.0.8 → 1.0.11
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/LICENSE +1 -1
- package/README.md +2 -2
- package/package.json +5 -5
package/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -73,7 +73,7 @@ const limits = {
|
|
|
73
73
|
// The startDate has to be in ISO 8601 format (https://en.wikipedia.org/wiki/ISO_8601)
|
|
74
74
|
const subscription = {
|
|
75
75
|
interval: 'month',
|
|
76
|
-
startDate: '
|
|
76
|
+
startDate: '2022-09-18T19:00:52Z'
|
|
77
77
|
};
|
|
78
78
|
|
|
79
79
|
// initialize the URL linking to help documentation etc.
|
|
@@ -200,4 +200,4 @@ Follow the instructions for the top-level repo.
|
|
|
200
200
|
|
|
201
201
|
# Copyright & License
|
|
202
202
|
|
|
203
|
-
Copyright (c) 2013-
|
|
203
|
+
Copyright (c) 2013-2022 Ghost Foundation - Released under the [MIT license](LICENSE).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tryghost/limit-service",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.11",
|
|
4
4
|
"repository": "https://github.com/TryGhost/Utils/tree/main/packages/limit-service",
|
|
5
5
|
"author": "Ghost Foundation",
|
|
6
6
|
"license": "MIT",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"exports": "./lib/limit-service.js",
|
|
9
9
|
"scripts": {
|
|
10
10
|
"dev": "echo \"Implement me!\"",
|
|
11
|
-
"test": "NODE_ENV=testing c8 --reporter text --reporter cobertura mocha './test/**/*.test.js'",
|
|
11
|
+
"test": "NODE_ENV=testing c8 --all --reporter text --reporter cobertura mocha './test/**/*.test.js'",
|
|
12
12
|
"lint": "eslint . --ext .js --cache",
|
|
13
13
|
"posttest": "yarn lint"
|
|
14
14
|
},
|
|
@@ -20,15 +20,15 @@
|
|
|
20
20
|
"access": "public"
|
|
21
21
|
},
|
|
22
22
|
"devDependencies": {
|
|
23
|
-
"c8": "7.
|
|
23
|
+
"c8": "7.11.2",
|
|
24
24
|
"mocha": "9.1.3",
|
|
25
25
|
"should": "13.2.3",
|
|
26
26
|
"sinon": "11.1.2"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@tryghost/errors": "^1.2.
|
|
29
|
+
"@tryghost/errors": "^1.2.1",
|
|
30
30
|
"lodash": "^4.17.21",
|
|
31
31
|
"luxon": "^1.26.0"
|
|
32
32
|
},
|
|
33
|
-
"gitHead": "
|
|
33
|
+
"gitHead": "8d69959c131f54d10ccdb12bc8b45db46162a4f6"
|
|
34
34
|
}
|