forked from dozoisch/react-google-recaptcha
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.6 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.6 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
{
"name": "react-google-recaptcha",
"version": "2.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.6.4",
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"babel-eslint": "^10.0.3",
"cross-env": "^5.2.1",
"eslint": "^5.16.0",
"eslint-config-prettier": "^3.6.0",
"eslint-plugin-prettier": "^2.7.0",
"jest": "^24.9.0",
"prettier": "1.14.2",
"react": "^16.11.0",
"react-dom": "^16.11.0"
},
"dependencies": {
"prop-types": "^15.5.0",
"react-async-script": "^1.1.1"
}
}