@sequencemedia/certificates 1.0.523 → 1.0.525

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 (2) hide show
  1. package/eslint.config.mjs +13 -0
  2. package/package.json +4 -4
@@ -0,0 +1,13 @@
1
+ import globals from 'globals'
2
+ import standard from '@sequencemedia/eslint-config-standard'
3
+
4
+ export default [
5
+ {
6
+ languageOptions: {
7
+ globals: {
8
+ ...globals.node
9
+ }
10
+ }
11
+ },
12
+ ...standard
13
+ ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sequencemedia/certificates",
3
- "version": "1.0.523",
3
+ "version": "1.0.525",
4
4
  "description": "Generate root CA and self-signed certificates with OpenSSL",
5
5
  "type": "module",
6
6
  "author": {
@@ -20,7 +20,7 @@
20
20
  "scripts": {
21
21
  "ca-and-certs": "node ca-and-certs.mjs",
22
22
  "certs": "node certs.mjs",
23
- "lint": "eslint . --ext .mjs,.cjs",
23
+ "lint": "eslint .",
24
24
  "lint:fix": "npm run lint -- --fix",
25
25
  "prepare": "husky"
26
26
  },
@@ -35,10 +35,10 @@
35
35
  "@babel/core": "^7.24.7",
36
36
  "@babel/eslint-parser": "^7.24.7",
37
37
  "@babel/preset-env": "^7.24.7",
38
+ "@sequencemedia/eslint-config-standard": "^0.0.8",
38
39
  "@sequencemedia/hooks": "^1.0.496",
39
40
  "core-js": "^3.37.1",
40
- "eslint": "8.57.0",
41
- "eslint-config-standard": "^17.1.0",
41
+ "eslint": "^9.6.0",
42
42
  "husky": "^9.0.11"
43
43
  }
44
44
  }