-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathpackage.json
65 lines (65 loc) · 1.74 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
{
"name": "@hcaptcha/react-hcaptcha",
"version": "1.11.1",
"types": "types/index.d.ts",
"main": "dist/index.js",
"module": "dist/esm/index.js",
"files": [
"src",
"dist",
"types"
],
"description": "A React library for hCaptcha",
"scripts": {
"start": "webpack serve -c ./demo/webpack.config.mjs",
"test": "jest",
"watch": "babel src -d dist --copy-files --watch",
"transpile": "babel src -d dist --copy-files",
"prebuild": "rimraf dist",
"build": "npm run transpile && npm run build:esm",
"build:esm": "cross-env BABEL_ENV=esm babel src -d dist/esm --copy-files",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"react": ">= 16.3.0",
"react-dom": ">= 16.3.0"
},
"keywords": [
"hcaptcha",
"hcaptcha-react",
"react",
"captcha"
],
"author": "hCaptcha team and contributors",
"repository": {
"type": "git",
"url": "https://github.com/hCaptcha/react-hcaptcha.git"
},
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.10",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@jest/globals": "^29.5.0",
"@types/react": "^16.0.0",
"babel-loader": "^8.2.2",
"babel-plugin-add-module-exports": "^1.0.4",
"cross-env": "^7.0.3",
"html-webpack-plugin": "^5.5.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"rimraf": "^3.0.2",
"wait-for-expect": "^3.0.2",
"webpack": "^5.76.3",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.13.1"
},
"dependencies": {
"@babel/runtime": "^7.17.9",
"@hcaptcha/loader": "^1.2.1"
}
}