42 lines
1.1 KiB
JSON
42 lines
1.1 KiB
JSON
{
|
|
"name": "@medusajs/auth-emailpass",
|
|
"version": "2.12.2",
|
|
"description": "Email and password credential authentication provider for Medusa",
|
|
"main": "dist/index.js",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/medusajs/medusa",
|
|
"directory": "packages/modules/providers/auth-emailpass"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"!dist/**/__tests__",
|
|
"!dist/**/__mocks__",
|
|
"!dist/**/__fixtures__"
|
|
],
|
|
"engines": {
|
|
"node": ">=20"
|
|
},
|
|
"author": "Medusa",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"test": "../../../../node_modules/.bin/jest --passWithNoTests src",
|
|
"test:integration": "../../../../node_modules/.bin/jest --passWithNoTests --forceExit --testPathPattern=\"integration-tests/__tests__/.*\\.spec\\.ts\"",
|
|
"build": "yarn run -T rimraf dist && yarn run -T tsc --build",
|
|
"watch": "yarn run -T tsc --watch"
|
|
},
|
|
"devDependencies": {
|
|
"@medusajs/framework": "2.12.2"
|
|
},
|
|
"dependencies": {
|
|
"scrypt-kdf": "^2.0.1"
|
|
},
|
|
"peerDependencies": {
|
|
"@medusajs/framework": "2.12.2"
|
|
},
|
|
"keywords": [
|
|
"medusa-provider",
|
|
"medusa-provider-auth-userpass"
|
|
]
|
|
}
|