forked from hCaptcha/react-hcaptcha
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.2 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
{
"name": "@hcaptcha/react-hcaptcha",
"version": "1.1.1",
"types": "types/index.d.ts",
"main": "dist/index.js",
"files": [
"src",
"dist",
"types/index.d.ts"
],
"description": "A React library for hCaptcha",
"scripts": {
"start": "webpack-dev-server --config ./webpack.config.js --mode development",
"test": "jest",
"watch": "babel src -d dist --copy-files --watch",
"transpile": "babel src -d dist --copy-files",
"build": "npm run transpile",
"prepublishOnly": "npm run transpile"
},
"peerDependencies": {
"react": ">= 16.3.0",
"react-dom": ">= 16.3.0"
},
"keywords": [
"hcaptcha",
"hcaptcha-react",
"react",
"captcha"
],
"author": "hCaptcha team and contributors",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"babel-loader": "^8.2.2",
"html-webpack-plugin": "^3.2.0",
"jest": "^26.6.3",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
}
}