-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.03 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
{
"name": "strapi-plugin-protected-populate",
"version": "1.3.3",
"description": "Protects your populates from the url against bad actors.",
"strapi": {
"name": "protected-populate",
"description": "Protects your populates from the url against bad actors if configured correctly.",
"kind": "plugin",
"displayName": "Protected Populate"
},
"dependencies": {
"@strapi/design-system": "^1.4.1"
},
"peerDependencies": {
"@strapi/strapi": "^4.5.3"
},
"author": {
"name": "Boegie19"
},
"maintainers": [
{
"name": "Boegie19"
}
],
"scripts": {
"test": "jest /",
"prettier:code": "prettier \"**/*.js\"",
"prettier:other": "prettier \"**/*.{md,css,scss,yaml,yml}\"",
"prettier:code:write": "prettier --write \"**/*.js\"",
"prettier:other:write": "prettier --write \"**/*.{md,css,scss,yaml,yml}\""
},
"engines": {
"node": ">=14.19.1 <=18.x.x",
"npm": ">=6.0.0"
},
"license": "MIT",
"devDependencies": {
"jest": "^29.3.1",
"prettier": "2.8.1"
}
}