-
Notifications
You must be signed in to change notification settings - Fork 145
/
package.json
61 lines (61 loc) · 1.69 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
{
"name": "react-google-recaptcha",
"version": "3.1.0",
"description": "React Component Wrapper for Google reCAPTCHA",
"main": "lib/index.js",
"module": "lib/esm/index.js",
"directories": {
"lib": "lib/"
},
"scripts": {
"build": "rm -rf lib && npm run build:cjs && npm run build:esm",
"build:cjs": "babel src --out-dir lib",
"build:esm": "cross-env BABEL_ENV=esm babel src --out-dir lib/esm",
"prepare": "npm run build",
"pretty": "prettier --write src/*.js ./*.js test/*.js",
"lint": "eslint ./",
"lint:fix": "eslint ./ --fix",
"test": "cross-env BABEL_ENV=development jest"
},
"repository": {
"type": "git",
"url": "https://github.com/dozoisch/react-google-recaptcha.git"
},
"keywords": [
"react",
"react-component",
"captcha",
"recaptcha",
"google-recaptcha"
],
"author": "Hugo Dozois <hugo@dozoisch.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dozoisch/react-google-recaptcha/issues"
},
"homepage": "https://github.com/dozoisch/react-google-recaptcha",
"peerDependencies": {
"react": ">=16.4.1"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.19.6",
"@babel/preset-env": "^7.19.4",
"@babel/preset-react": "^7.18.6",
"@testing-library/react": "^13.4.0",
"cross-env": "^7.0.3",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"jest": "^29.2.2",
"jest-environment-jsdom": "^29.2.2",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"dependencies": {
"prop-types": "^15.5.0",
"react-async-script": "^1.2.0"
}
}