-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.67 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.67 KB
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
{
"name": "strapi-plugin-component-duplicator",
"version": "1.0.1",
"description": "A duplicate button for your repeatable components.",
"strapi": {
"displayName": "Component Duplicator",
"name": "component-duplicator",
"description": "A duplicate button for your repeatable components.",
"required": false,
"kind": "plugin"
},
"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 LICENSE.md build/ && copyfiles README.md build/",
"build:clean": "rimraf build/tsconfig.tsbuildinfo",
"develop": "tsc -w",
"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 --forceExit",
"test:integration": "ENV_PATH=./playground/.env jest --verbose --runInBand --forceExit --testMatch **/healthcheck.test.js",
"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-component-duplicator@'./../build'"
},
"author": {
"name": "Boaz Poolman",
"email": "boaz@pluginpal.io",
"url": "https://github.com/pluginpal"
},
"maintainers": [
{
"name": "Boaz Poolman",
"email": "boaz@pluginpal.io",
"url": "https://github.com/pluginpal"
}
],
"peerDependencies": {
"@strapi/strapi": "^4.0.0"
},
"devDependencies": {
"@strapi/design-system": "^1.14.1",
"@strapi/helper-plugin": "^4.19.0",
"@strapi/icons": "^1.14.1",
"@strapi/utils": "^4.19.0",
"@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",
"styled-components": "^5.2.3",
"typescript": "^5.1.6"
},
"bugs": {
"url": "https://github.com/pluginpal/strapi-plugin-component-duplicator/issues"
},
"homepage": "https://www.pluginpal.io/plugin/component-duplicator",
"engines": {
"node": ">=18.0.0",
"npm": ">=6.0.0"
},
"license": "MIT"
}