@eslinted/defaults 10.3.0 → 10.3.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 (2) hide show
  1. package/.mocharc.yml +15 -0
  2. package/package.json +5 -11
package/.mocharc.yml ADDED
@@ -0,0 +1,15 @@
1
+ # ##################
2
+ # # .mocharc ###
3
+ # # 1101.0.0 ###
4
+ # ##################
5
+
6
+ # https://mochajs.org/#configuration-format
7
+ # https://mochajs.org/#command-line-usage
8
+
9
+ spec:
10
+ - "dist/**/*.spec.js"
11
+ extension:
12
+ - js
13
+ - cjs
14
+ - mjs
15
+ color: true
package/package.json CHANGED
@@ -1,18 +1,17 @@
1
1
  {
2
- "$pkg": "2214.1.0",
2
+ "$pkg": "2214.4.0",
3
3
  "$schema": "https://json.schemastore.org/package",
4
4
  "$help": "https://docs.npmjs.com/cli/configuring-npm/package-json",
5
5
  "name": "@eslinted/defaults",
6
- "version": "10.3.0",
7
- "description": "Default scopes for `linted`.",
6
+ "version": "10.3.1",
8
7
  "repository": "github:jimmy-zhening-luo/linted-defaults",
9
- "license": "MIT",
10
8
  "private": false,
11
9
  "engineStrict": true,
12
10
  "engines": {
13
11
  "node": ">=22.14.0 <23",
14
12
  "npm": ">=11.2.0 <12"
15
13
  },
14
+ "type": "module",
16
15
  "peerDependenciesMeta": {},
17
16
  "dependencies": {},
18
17
  "devDependencies": {
@@ -25,7 +24,6 @@
25
24
  "ts-add-js-extension": "^1.6.5",
26
25
  "typescript": "^5.8.2"
27
26
  },
28
- "type": "module",
29
27
  "main": "dist/index.js",
30
28
  "types": "dist/index.d.ts",
31
29
  "config": {
@@ -80,14 +78,10 @@
80
78
  "deploy": ""
81
79
  },
82
80
  "publishConfig": {
83
- "access": "public",
84
81
  "tag": "next"
85
82
  },
86
- "mocha": {
87
- "spec": [
88
- "dist/**/*.spec.js"
89
- ]
90
- },
83
+ "license": "MIT",
84
+ "description": "Default scopes for `linted`.",
91
85
  "keywords": [],
92
86
  "author": "Jimmy Zhening Luo <jimmy-zhening-luo@users.noreply.github.com> (https://jimm.my/)"
93
87
  }