@purpurds/eslint-plugin-purpur 7.5.0 → 7.6.0

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 (1) hide show
  1. package/package.json +5 -8
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@purpurds/eslint-plugin-purpur",
3
- "version": "7.5.0",
3
+ "version": "7.6.0",
4
4
  "main": "src/index.js",
5
5
  "files": [
6
6
  "index.js",
@@ -10,7 +10,7 @@
10
10
  ],
11
11
  "dependencies": {
12
12
  "requireindex": "~1.2.0",
13
- "@purpurds/purpur": "7.5.0"
13
+ "@purpurds/purpur": "7.6.0"
14
14
  },
15
15
  "devDependencies": {
16
16
  "@types/node": "20.12.12",
@@ -18,7 +18,6 @@
18
18
  "eslint-plugin-prettier": "~3.4.1",
19
19
  "eslint": "9.24.0",
20
20
  "lint-staged": "15.5.0",
21
- "mocha": "~11.1.0",
22
21
  "vitest": "^3.1.2",
23
22
  "prettier": "~2.8.8",
24
23
  "@purpurds/component-rig": "1.0.0"
@@ -31,10 +30,8 @@
31
30
  "clean": "rm -rf dist types",
32
31
  "lint": "lint-staged",
33
32
  "lint:fix": "eslint . --fix",
34
- "start": "npm run build && node dist/bin.js",
35
- "test": "npm run test:unit && npm run test:unit2",
36
- "test:unit": "mocha __test__ --recursive",
37
- "test:unit2": "vitest __test2__ --run",
38
- "test:watch": "npm run test:unit -- --watch"
33
+ "start": "rushx build && node dist/bin.js",
34
+ "test": "rushx test:unit",
35
+ "test:unit": "vitest run"
39
36
  }
40
37
  }