-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 1016 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 1016 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "socket-skills",
"version": "1.0.0",
"private": true,
"scripts": {
"prepare": "cp scripts/pre-commit .git/hooks/pre-commit",
"generate": "./scripts/publish.sh",
"check": "./scripts/publish.sh --check",
"test": "vitest run --config tests/vitest.config.ts",
"test:structural": "vitest run --config tests/vitest.config.ts tier1-structural/",
"test:api": "SOCKET_SECURITY_API_KEY=${SOCKET_SECURITY_API_KEY} vitest run --config tests/vitest.config.ts tier2-api/",
"test:e2e": "RUN_E2E=1 vitest run --config tests/vitest.config.ts tier3-e2e/",
"test:integration": "RUN_E2E=1 vitest run --config tests/vitest.config.ts tier3-e2e/",
"test:integration:claude": "TEST_AGENT=claude-code npm run test:integration",
"test:integration:codex": "TEST_AGENT=codex npm run test:integration",
"test:integration:gemini": "TEST_AGENT=gemini npm run test:integration"
},
"devDependencies": {
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vitest": "^4.0.18"
}
}