forked from strapi-community/strapi-plugin-transformer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.55 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
56
57
58
59
60
61
62
{
"$schema": "https://json.schemastore.org/package",
"name": "strapi-plugin-transformer",
"version": "3.1.2",
"description": "A plugin for Strapi Headless CMS that provides the ability to transform the API request and/or response.",
"scripts": {
"lint": "eslint . --fix",
"format": "prettier --write **/*.{ts,js,json,yml}",
"test": "jest"
},
"author": {
"name": "@ComfortablyCoding",
"url": "https://github.com/ComfortablyCoding"
},
"maintainers": [
{
"name": "@ComfortablyCoding",
"url": "https://github.com/ComfortablyCoding"
}
],
"homepage": "https://github.com/ComfortablyCoding/strapi-plugin-transformer#readme",
"repository": {
"type": "git",
"url": "https://github.com/ComfortablyCoding/strapi-plugin-transformer.git"
},
"bugs": {
"url": "https://github.com/ComfortablyCoding/strapi-plugin-transformer/issues"
},
"dependencies": {},
"devDependencies": {
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^26.1.1",
"eslint-plugin-node": "^11.1.0",
"jest": "^27.5.1",
"prettier": "^2.5.1"
},
"peerDependencies": {
"@strapi/strapi": "^4.0.7",
"lodash": "^4.17.21",
"yup": "^0.32.9"
},
"strapi": {
"displayName": "Transformer",
"description": "A plugin for Strapi Headless CMS that provides the ability to transform the API response.",
"name": "transformer",
"kind": "plugin"
},
"engines": {
"node": ">=14.19.1 <=20.x.x",
"npm": ">=6.0.0"
},
"keywords": [
"strapi",
"strapi-plugin",
"plugin",
"strapi plugin",
"transform",
"response"
],
"license": "MIT"
}