Files
owncast/test/automated/api/package.json
T
f30b80d473 sha-512 hash passwords longer than 72 bytes (#4331)
* sha-512 hash passwords longer than 72 bytes

* rename compress_hashing to go conventions

* add api test for long passwords

* fix typo

* chore(test): add unit test for password hashing

---------

Co-authored-by: Gabe Kangas <gabek@real-ity.com>
2025-10-13 15:05:42 -07:00

32 lines
579 B
JSON

{
"name": "owncast-test-automation",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest *.test.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"ajv": "^8.11.0",
"ajv-draft-04": "^1.0.0",
"bcrypt": "^5.1.1",
"crypto-random": "^2.0.1",
"jsonfile": "^6.1.0",
"sha.js": "^2.4.12",
"supertest": "^6.3.2",
"websocket": "^1.0.32"
},
"devDependencies": {
"jest": "^29.7.0",
"jest-jasmine2": "^29.7.0",
"ws": "^7.5.9"
},
"jest": {
"verbose": false,
"maxWorkers": 1,
"testRunner": "jest-jasmine2"
}
}