forked from szchenghuang/react-google-invisible-recaptcha
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.96 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
66
{
"name": "react-google-invisible-recaptcha",
"author": "szchenghuang <[email protected]>",
"version": "0.2.8",
"description": "A React component which is simply interested in Google invisible reCaptcha.",
"main": "index.js",
"keywords": [
"react",
"google",
"invisible",
"recaptcha"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/szchenghuang/react-google-invisible-recaptcha/issues"
},
"homepage": "https://github.com/szchenghuang/react-google-invisible-recaptcha#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/szchenghuang/react-google-invisible-recaptcha.git"
},
"scripts": {
"lint": "eslint src",
"prebuild:example": "rm -rf docs && mkdir docs",
"build:example": "webpack --config ./example/webpack.config.js",
"prebuild": "rm -rf dist && mkdir dist ",
"build": "babel ./src --out-dir ./dist",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"prop-types": "^15.6.0",
"uuid": "^3.1.0"
},
"peerDependencies": {
"react": "16.*"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.1.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.26.0",
"babel-runtime": "^6.26.0",
"eslint": "^4.9.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-google": "^0.9.1",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.4.0",
"eslint-plugin-standard": "^3.0.1",
"html-webpack-plugin": "^2.30.1",
"react": "^16.3.1",
"react-dom": "^16.3.1",
"webpack": "^3.8.1"
},
"directories": {
"doc": "docs",
"example": "example"
}
}