-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.2 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.2 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
82
83
84
85
86
{
"name": "hcaptcha",
"license": "GPL-2.0-or-later",
"scripts": {
"dev": "webpack --mode development",
"prod": "webpack --env production --mode production",
"watch": "webpack --mode development --watch",
"lint": "npx eslint 'eslint.config.cjs' 'webpack.config.js' 'src/js/**/*.js' 'assets/js/*.js' 'tests/js/**/*.js'",
"test": "jest"
},
"jest": {
"automock": false,
"verbose": true,
"testEnvironment": "jsdom",
"testEnvironmentOptions": {
"url": "http://domain.tld/"
},
"setupFiles": [
"<rootDir>/tests/js/setupTests.js"
],
"testPathIgnorePatterns": [
"/node_modules/"
],
"transform": {
"\\.[tj]sx?$": [
"babel-jest",
{
"presets": [
[
"@babel/preset-env"
]
]
}
]
}
},
"engines": {
"node": ">=24.15.0",
"npm": ">=11.12.1"
},
"packageManager": "yarn@4.17.0",
"dependencies": {
"@wordpress/hooks": "^4.49.0"
},
"devDependencies": {
"@babel/core": "^7.29.7",
"@babel/preset-env": "^7.29.7",
"@inrupt/jest-jsdom-polyfills": "^4.1.4",
"@wordpress/eslint-plugin": "^25.5.0",
"babel-loader": "^10.1.1",
"css-loader": "^7.1.4",
"css-minimizer-webpack-plugin": "^8.0.0",
"eslint": "^10.6.0",
"glob": "^13.0.6",
"globals": "^17.7.0",
"jest": "^30.4.2",
"jest-environment-jsdom": "^30.4.1",
"jest-fetch-mock": "^3.0.3",
"jquery": "^3.7.1",
"mini-css-extract-plugin": "^2.10.2",
"prettier": "^3.8.5",
"terser-webpack-plugin": "^5.6.1",
"typescript": "^6.0.3",
"webpack": "^5.108.1",
"webpack-cli": "^7.1.0",
"webpack-remove-empty-scripts": "^1.1.1"
},
"resolutions": {
"@babel/plugin-transform-modules-systemjs": "^7.29.7",
"cross-spawn": "^7.0.6",
"fast-uri": "^3.1.2",
"flatted": "^3.4.2",
"js-yaml": "^4.3.0",
"micromatch": "^4.0.8",
"minimatch@npm:^3": "^3.1.5",
"minimatch@npm:9.0.3": "^9.0.9",
"minimatch@npm:^10": "^10.2.5",
"picomatch@npm:^2": "^2.3.14",
"picomatch@npm:^4": "^4.0.5",
"qs": "^6.15.3",
"serialize-javascript": "^7.0.6",
"svgo": "^4.0.1",
"tar": "^7.5.17",
"undici": "^7.28.0"
}
}