2021-12-19 18:19:25 +00:00
|
|
|
{
|
2021-12-20 17:36:20 +00:00
|
|
|
"name": "@unlock-music/joox-crypto",
|
2021-12-19 18:19:25 +00:00
|
|
|
"type": "commonjs",
|
2024-09-29 16:57:38 +00:00
|
|
|
"version": "0.0.1",
|
2021-12-19 18:19:25 +00:00
|
|
|
"description": "Crypto library to decrypt joox encrypted music files.",
|
|
|
|
"main": "src/index.js",
|
|
|
|
"types": "src/index.d.ts",
|
|
|
|
"bin": {
|
|
|
|
"joox-decrypt": "joox-decrypt"
|
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"test": "jest -w 50% src",
|
|
|
|
"prepare": "simple-git-hooks"
|
|
|
|
},
|
2024-09-29 16:59:16 +00:00
|
|
|
"repository": "https://git.unlock-music.dev/um/joox-crypto.git",
|
2021-12-19 18:19:25 +00:00
|
|
|
"keywords": [
|
|
|
|
"joox"
|
|
|
|
],
|
2024-09-29 16:59:16 +00:00
|
|
|
"author": "LSR",
|
2021-12-19 18:19:25 +00:00
|
|
|
"license": "MIT",
|
|
|
|
"devDependencies": {
|
2024-09-29 16:57:38 +00:00
|
|
|
"@types/jest": "^29.5.13",
|
|
|
|
"jest": "^29.7.0",
|
|
|
|
"lint-staged": "^15.2.10",
|
|
|
|
"prettier": "3.3.3",
|
|
|
|
"simple-git-hooks": "^2.11.1"
|
2021-12-19 18:19:25 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2024-09-29 16:57:38 +00:00
|
|
|
"crypto-js": "^4.2.0"
|
2021-12-19 18:19:25 +00:00
|
|
|
},
|
|
|
|
"lint-staged": {
|
|
|
|
"*.{js,css,md}": "prettier --write"
|
|
|
|
},
|
|
|
|
"simple-git-hooks": {
|
|
|
|
"pre-commit": "npx lint-staged",
|
|
|
|
"pre-push": "npm test"
|
|
|
|
}
|
|
|
|
}
|