-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
71 lines (71 loc) · 1.82 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
{
"name": "@plesk/plesk-ext-sdk",
"description": "Plesk Extension SDK",
"version": "0.6.3",
"author": "Plesk Developers <[email protected]> (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",
"@plesk/eslint-config": "^2.0.0",
"@plesk/ui-library": "1.1.5",
"babel-core": "^7.0.0-bridge.0",
"babel-loader": "^8.0.0",
"chalk": "^2.4.1",
"clean-webpack-plugin": "^4.0.0",
"eslint": "^7.28.0",
"eslint-plugin-jest": "^24.3.6",
"fs-extra": "^6.0.1",
"html-webpack-plugin": "^5.5.0",
"jest": "^25.5.4",
"pug": "^3.0.2",
"pug-loader": "^2.4.0",
"qs": "^6.5.2",
"react-router-dom": "^4.3.1",
"webpack": "^5.72.1",
"webpack-virtual-modules": "^0.4.3",
"yargs": "^12.0.1"
},
"devDependencies": {
"enzyme": "^3.5.0",
"enzyme-adapter-react-16": "^1.4.0",
"enzyme-to-json": "^3.6.2",
"remark-cli": "^5.0.0",
"remark-validate-links": "^7.1.0"
},
"jest": {
"testMatch": [
"**/*.test.js?(x)"
],
"setupFiles": [
"<rootDir>/test/setup.js"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
}
}