forked from hCaptcha/hcaptcha-wordpress-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.18 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
{
"name": "hcaptcha",
"license": "GPL-2.0-or-later",
"scripts": {
"build:dev": "webpack --mode development",
"build:prod": "webpack --env production --mode production",
"test": "jest",
"coveralls": "jest --coverage && cat coverage/lcov.info | coveralls"
},
"jest": {
"automock": false,
"verbose": true,
"testURL": "http://domain.tld/",
"setupFiles": [
"<rootDir>/.tests/js/setupTests.js"
],
"testPathIgnorePatterns": [
"/node_modules/"
],
"transform": {
"\\.[tj]sx?$": [
"babel-jest",
{
"presets": [
[
"babel-preset-env",
{
"targets": {
"node": 10
}
}
]
]
}
]
}
},
"dependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"cross-fetch": "^3.1.4"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/eslint-parser": "^7.16.5",
"@wordpress/eslint-plugin": "^9.3.0",
"eslint": "^7.32.0",
"typescript": "3.9.4",
"webpack": "^4.46.0",
"webpack-cli": "^4.9.1"
}
}