-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.15 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.15 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
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@plesk/plesk-ext-sdk",
"description": "Plesk Extension SDK",
"version": "0.8.0",
"author": "Plesk Developers <plesk-dev-leads@plesk.com> (https://www.plesk.com/)",
"repository": "plesk/plesk-ext-sdk",
"bugs": {
"url": "https://github.com/plesk/plesk-ext-sdk/issues"
},
"license": "Apache-2.0",
"main": "src/index.js",
"scripts": {
"lint:es": "eslint src lib",
"lint:md": "remark --quiet --frail .",
"lint": "yarn lint:es && yarn lint:md",
"pretest": "yarn lint",
"test": "jest"
},
"bin": {
"plesk-ext-sdk": "./bin/cli.js"
},
"files": [
"bin",
"lib",
"src"
],
"dependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.17.12",
"@babel/plugin-proposal-object-rest-spread": "^7.18.0",
"@babel/plugin-transform-runtime": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"@babel/preset-react": "^7.17.12",
"@cfaester/enzyme-adapter-react-18": "^0.8.0",
"@plesk/eslint-config": "^4.0.0",
"@plesk/ui-library": "^3.46.1",
"babel-loader": "^10.0.0",
"clean-webpack-plugin": "^4.0.0",
"enzyme": "^3.11.0",
"enzyme-to-json": "^3.6.2",
"eslint": "^9.37.0",
"eslint-plugin-jest": "^29.0.1",
"fs-extra": "^11.3.2",
"html-webpack-plugin": "^5.5.0",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"prop-types": "^15.8.1",
"pug": "^3.0.2",
"pug-loader": "^2.4.0",
"qs": "^6.5.2",
"react": "18",
"react-dom": "18",
"react-router-dom": "^7.9.4",
"webpack": "^5.72.1",
"webpack-virtual-modules": "^0.6.2",
"yargs": "16"
},
"devDependencies": {
"remark-cli": "^12.0.1",
"remark-validate-links": "^13.1.0"
},
"resolutions": {
"cheerio": "1.0.0-rc.12"
},
"jest": {
"testEnvironment": "jsdom",
"setupFilesAfterEnv": [
"<rootDir>/test/setup.js"
],
"testMatch": [
"**/*.test.js?(x)"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"moduleNameMapper": {
"\\.(css|less|scss)$": "<rootDir>/lib/jest/styleMock.js",
"\\.(png|jpg|gif|svg|woff|woff2|webp)$": "<rootDir>/lib/jest/fileMock.js"
}
}
}