@pureq/auth 0.2.0 → 0.2.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.
- package/package.json +17 -17
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pureq/auth",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "Authentication and token management middleware for pureq",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -125,6 +125,19 @@
|
|
|
125
125
|
"files": [
|
|
126
126
|
"dist"
|
|
127
127
|
],
|
|
128
|
+
"scripts": {
|
|
129
|
+
"build": "tsc -p tsconfig.json",
|
|
130
|
+
"typecheck": "pnpm --filter @pureq/pureq run build && tsc -p tsconfig.json --noEmit",
|
|
131
|
+
"test": "vitest run --passWithNoTests",
|
|
132
|
+
"test:redteam": "vitest run tests/auth-breaker.redteam.test.ts",
|
|
133
|
+
"test:watch": "vitest",
|
|
134
|
+
"test:heavy": "vitest run tests/auth-assault.heavy.test.ts tests/auth-chaos.heavy.test.ts tests/auth-defense-saturation.heavy.test.ts tests/auth-bank-gafam.assault.heavy.test.ts tests/auth-adversarial-zero-day.heavy.test.ts",
|
|
135
|
+
"test:assault": "pnpm run test:contract && pnpm run test:heavy && pnpm run test:ci",
|
|
136
|
+
"test:unit": "vitest run tests --exclude tests/*.integration.test.ts --passWithNoTests",
|
|
137
|
+
"test:integration": "vitest run integration.test.ts --passWithNoTests",
|
|
138
|
+
"test:contract": "vitest run tests/storage-contract.test.ts tests/*contract*.integration.test.ts --passWithNoTests",
|
|
139
|
+
"test:ci": "pnpm run test:unit && pnpm run test:integration && pnpm run typecheck"
|
|
140
|
+
},
|
|
128
141
|
"keywords": [
|
|
129
142
|
"http",
|
|
130
143
|
"fetch",
|
|
@@ -152,22 +165,9 @@
|
|
|
152
165
|
}
|
|
153
166
|
},
|
|
154
167
|
"devDependencies": {
|
|
168
|
+
"@pureq/pureq": "workspace:*",
|
|
155
169
|
"@types/node": "^24.5.2",
|
|
156
170
|
"typescript": "^6.0.2",
|
|
157
|
-
"vitest": "^3.2.4"
|
|
158
|
-
"@pureq/pureq": "1.1.9"
|
|
159
|
-
},
|
|
160
|
-
"scripts": {
|
|
161
|
-
"build": "tsc -p tsconfig.json",
|
|
162
|
-
"typecheck": "pnpm --filter @pureq/pureq run build && tsc -p tsconfig.json --noEmit",
|
|
163
|
-
"test": "vitest run --passWithNoTests",
|
|
164
|
-
"test:redteam": "vitest run tests/auth-breaker.redteam.test.ts",
|
|
165
|
-
"test:watch": "vitest",
|
|
166
|
-
"test:heavy": "vitest run tests/auth-assault.heavy.test.ts tests/auth-chaos.heavy.test.ts tests/auth-defense-saturation.heavy.test.ts tests/auth-bank-gafam.assault.heavy.test.ts tests/auth-adversarial-zero-day.heavy.test.ts",
|
|
167
|
-
"test:assault": "pnpm run test:contract && pnpm run test:heavy && pnpm run test:ci",
|
|
168
|
-
"test:unit": "vitest run tests --exclude tests/*.integration.test.ts --passWithNoTests",
|
|
169
|
-
"test:integration": "vitest run integration.test.ts --passWithNoTests",
|
|
170
|
-
"test:contract": "vitest run tests/storage-contract.test.ts tests/*contract*.integration.test.ts --passWithNoTests",
|
|
171
|
-
"test:ci": "pnpm run test:unit && pnpm run test:integration && pnpm run typecheck"
|
|
171
|
+
"vitest": "^3.2.4"
|
|
172
172
|
}
|
|
173
|
-
}
|
|
173
|
+
}
|