-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
55 lines (55 loc) · 1.29 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "strapi-plugin-passwordless",
"version": "4.0.15",
"description": "A plugin for Strapi Headless CMS that provides ability to sign-in/sign-up to an application by link had sent to email.",
"strapi": {
"displayName": "Passwordless",
"kind": "plugin",
"name": "passwordless",
"icon": "key",
"description": "Enables a secure and seamless emailed link authentication experience."
},
"keywords": [
"strapi",
"plugin",
"passwordless",
"login",
"authentification"
],
"author": {
"name": "Andrey Kucherenko",
"email": "kucherenko.andrey@gmail.com",
"url": "https://github.com/kucherenko"
},
"maintainers": [
{
"name": "Andrey Kucherenko",
"email": "kucherenko.andrey@gmail.com",
"url": "https://github.com/kucherenko"
}
],
"engines": {
"node": ">=10.16.0",
"npm": ">=6.0.0"
},
"homepage": "https://github.com/kucherenko/strapi-plugin-passwordless",
"license": "MIT",
"devDependencies": {
"cz-conventional-changelog": "3.3.0",
"jest": "^27.5.1"
},
"peerDependencies": {
"@strapi/strapi": "^4.x"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"scripts": {
"test": "jest"
},
"dependencies": {
"nanoid": "^3.3.4"
}
}