claude-autopm 1.12.3 → 1.13.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-autopm",
3
- "version": "1.12.3",
3
+ "version": "1.13.0",
4
4
  "description": "Autonomous Project Management Framework for Claude Code - Advanced AI-powered development automation",
5
5
  "main": "bin/autopm.js",
6
6
  "bin": {
@@ -9,8 +9,8 @@
9
9
  "scripts": {
10
10
  "postinstall": "echo '🎉 ClaudeAutoPM installed! Run: autopm --help'",
11
11
  "test:old": "node scripts/test.js",
12
- "test": "jest --config jest.config.clean.js",
13
- "test:full": "jest",
12
+ "test": "jest --config jest.config.quick.js --forceExit",
13
+ "test:full": "jest --config jest.config.clean.js --forceExit",
14
14
  "test:watch": "jest --watch",
15
15
  "test:coverage": "c8 npm test",
16
16
  "test:clean": "jest --config jest.config.clean.js",
@@ -48,8 +48,8 @@
48
48
  "test:comprehensive:quick": "TEST_TIMEOUT=30000 node test/run-all-tests.js",
49
49
  "test:comprehensive:ci": "CI=true CI_TEST_TIMEOUT=600000 node test/run-all-tests.js",
50
50
  "test:azure": "node --test test/providers/azure/*.test.js",
51
- "test:unit": "node --test test/unit/**/*.test.js",
52
- "test:unit:coverage": "c8 node --test test/unit/**/*.test.js",
51
+ "test:unit": "node --test $(find test/unit -name '*.test.js' ! -name '*-jest.test.js')",
52
+ "test:unit:coverage": "c8 node --test $(find test/unit -name '*.test.js' ! -name '*-jest.test.js')",
53
53
  "test:e2e": "jest test/e2e",
54
54
  "test:e2e:legacy": "node --test test/e2e/*.test.js",
55
55
  "setup:hooks": "bash scripts/setup-hooks.sh",