forked from pluginpal/strapi-plugin-sitemap
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
87 lines (87 loc) · 3.22 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "strapi-plugin-sitemap",
"version": "3.0.6",
"description": "Generate a highly customizable sitemap XML in Strapi CMS.",
"strapi": {
"displayName": "Sitemap",
"name": "sitemap",
"icon": "sitemap",
"description": "Generate a highly customizable sitemap XML in Strapi CMS.",
"required": false,
"kind": "plugin"
},
"bin": {
"strapi-sitemap": "./bin/strapi-sitemap"
},
"scripts": {
"build": "tsc --outDir build && yarn build:copy-files && yarn build:clean",
"build:install": "cp package.json build && cp yarn.lock build && cd build && yarn --frozen-lockfile --unsafe-perm --production",
"build:copy-files": "copyfiles -u 1 xsl/**/* build/xsl/ && copyfiles -u 1 bin/**/* build/bin/ && copyfiles LICENSE.md build/ && copyfiles README.md build/",
"build:clean": "rimraf build/tsconfig.tsbuildinfo",
"develop": "yarn develop:copy-files && tsc -w",
"develop:copy-files": "copyfiles -u 1 xsl/**/* playground/src/plugins/sitemap/xsl/",
"eslint": "eslint --max-warnings=0 './**/*.{js,jsx,ts,tsx}'",
"eslint:fix": "eslint --fix './**/*.{js,jsx,ts,tsx}'",
"test:install": "mv yarn.lock tmp-yarn.lock && mv package.json tmp-package.json && yarn add @types/jest typescript jest ts-jest supertest && rm -rf package.json yarn.lock && mv tmp-package.json package.json && mv tmp-yarn.lock yarn.lock",
"test:unit": "ENV_PATH=./playground/.env jest --verbose --runInBand",
"test:integration": "ENV_PATH=./playground/.env jest --verbose --runInBand --testMatch **/healthcheck.test.js",
"docs:generate": "cd docs && yarn generate",
"docs:dev": "cd docs && yarn dev",
"playground:install": "cd playground && yarn install",
"playground:build": "cd playground && yarn build",
"playground:start": "cd playground && yarn start",
"playground:develop": "cd playground && yarn develop",
"playground:install-plugin": "cd playground && yarn add strapi-plugin-sitemap@'./../build'"
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "^8.3.0",
"immutable": "^3.8.2",
"redux-immutable": "^4.0.0",
"redux-thunk": "^2.3.0",
"sitemap": "^7.1.0",
"xml2js": "^0.5.0"
},
"author": {
"name": "Boaz Poolman",
"email": "info@boazpoolman.nl",
"url": "https://github.com/boazpoolman"
},
"maintainers": [
{
"name": "Boaz Poolman",
"email": "info@boazpoolman.nl",
"url": "https://github.com/boazpoolman"
}
],
"peerDependencies": {
"@strapi/strapi": "^4.0.0"
},
"devDependencies": {
"@strapi/design-system": "^1.11.0",
"@strapi/helper-plugin": "^4.14.4",
"@strapi/icons": "^1.11.0",
"@strapi/utils": "^4.14.4",
"@uncinc/eslint-config": "^1.1.0",
"copyfiles": "^2.4.1",
"jest": "^29.5.0",
"jest-cli": "^29.5.0",
"jest-styled-components": "^7.1.1",
"lodash": "^4.17.11",
"react": "^17.0.2",
"react-intl": "^5.20.12",
"react-redux": "^7.2.2",
"redux": "^4.0.5",
"styled-components": "^5.2.3",
"typescript": "^5.1.6"
},
"bugs": {
"url": "https://github.com/boazpoolman/strapi-plugin-sitemap/issues"
},
"homepage": "https://github.com/boazpoolman/strapi-plugin-sitemap#readme",
"engines": {
"node": ">=18.0.0",
"npm": ">=6.0.0"
},
"license": "MIT"
}