-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.31 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.31 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
87
88
89
90
91
{
"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 'webpack.config.js' 'src/js/**/*.js' 'assets/js/*.js' 'tests/js/**/*.js'",
"test": "jest",
"coveralls": "jest --coverage && cat coverage/lcov.info | coveralls"
},
"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",
{
"targets": {
"node": 10
}
}
]
]
}
]
}
},
"engines": {
"node": ">=22.22.0",
"npm": ">=11.9.0"
},
"packageManager": "yarn@4.13.0",
"dependencies": {
"@wordpress/hooks": "^4.40.0"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.0",
"@inrupt/jest-jsdom-polyfills": "^4.0.8",
"@wordpress/eslint-plugin": "^24.2.0",
"babel-loader": "^10.0.0",
"coveralls": "^3.1.1",
"css-loader": "^7.1.4",
"css-minimizer-webpack-plugin": "^7.0.4",
"eslint": "^8.57.1",
"glob": "^13.0.6",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"jest-fetch-mock": "^3.0.3",
"jquery": "^3.7.1",
"mini-css-extract-plugin": "^2.10.0",
"prettier": "^3.8.1",
"qs": "^6.15.0",
"terser-webpack-plugin": "^5.3.16",
"typescript": "^5.9.3",
"webpack": "^5.105.3",
"webpack-cli": "^6.0.1",
"webpack-remove-empty-scripts": "^1.1.1"
},
"resolutions": {
"cross-spawn": "^7.0.6",
"flatted": "^3.4.2",
"form-data": "^2.5.5",
"js-yaml": "^4.1.1",
"micromatch": "^4.0.8",
"minimatch@npm:^3": "^3.1.5",
"minimatch@npm:9.0.3": "^9.0.9",
"minimatch@npm:^10": "^10.2.4",
"picomatch@npm:^2": "^2.3.2",
"picomatch@npm:^4": "^4.0.4",
"serialize-javascript": "^7.0.5",
"svgo": "^4.0.1",
"tar": "^7.5.11",
"undici": "^7.24.2"
}
}