@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.
Files changed (3) hide show
  1. package/LICENSE +1 -1
  2. package/README.md +2 -2
  3. package/package.json +5 -5
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2013-2021 Ghost Foundation
3
+ Copyright (c) 2013-2022 Ghost Foundation
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
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: '2021-09-18T19:00:52Z'
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-2021 Ghost Foundation - Released under the [MIT license](LICENSE).
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.8",
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.10.0",
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.0",
29
+ "@tryghost/errors": "^1.2.1",
30
30
  "lodash": "^4.17.21",
31
31
  "luxon": "^1.26.0"
32
32
  },
33
- "gitHead": "8ecf8264002298829fbce686a1bd0ad413e2e01b"
33
+ "gitHead": "8d69959c131f54d10ccdb12bc8b45db46162a4f6"
34
34
  }