Files
proxy/nodejs/package.json
T
wmantly 6b8b08e94d Fix test suite for CI/CD compatibility
- Fix glob patterns in package.json test scripts (explicit file listing)
- Add error handling for chmod in unix_socket_json.js (test environments)
- Fix unhandled promise rejections in DNS provider contract tests
- Replace broken malformed JSON test with proper buffering test
- Add defensive file cleanup in unix socket tests

All 55 tests now pass successfully.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2025-12-31 17:26:24 -05:00

52 lines
1.5 KiB
JSON

{
"name": "proxy-api",
"version": "1.0.0",
"private": true,
"author": [
{
"name": "William Mantly",
"email": "wmantly@gmail.com"
}
],
"scripts": {
"start": "node ./bin/www",
"dev": "npx nodemon --ignore public/ ./bin/www",
"test": "node --test test/unit/callback_queue.test.js test/unit/host_lookup.test.js test/unit/unix_socket.test.js test/integration/dns_provider.test.js",
"test:unit": "node --test test/unit/callback_queue.test.js test/unit/host_lookup.test.js test/unit/unix_socket.test.js",
"test:integration": "node --test test/integration/dns_provider.test.js",
"test:watch": "node --test --watch test/unit/callback_queue.test.js test/unit/host_lookup.test.js test/unit/unix_socket.test.js test/integration/dns_provider.test.js"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.4.2",
"@popperjs/core": "^2.11.8",
"acme-client": "^5.4.0",
"axios": "^1.7.4",
"bcrypt": "^5.1.1",
"bootstrap": "^5.3.3",
"ejs": "^3.1.10",
"express": "^4.19.2",
"extend": "^3.0.2",
"jq-repeat": "^2.0.0",
"jquery": "^3.7.1",
"ldapts": "^2.12.0",
"linux-sys-user": "^1.1.8",
"moment": "^2.29.4",
"mustache": "^4.2.0",
"p2psub": "^0.1.9",
"redis": "^4.6.7",
"socket.io": "^4.7.5",
"tld-extract": "^2.1.0"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://git.theta42.com/wmantly/proxy.git"
},
"devDependencies": {
"nodemon": "^3.1.4"
}
}