forked from busyorg/react-google-recaptcha
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 2.12 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
67
68
69
70
71
72
73
74
75
76
77
{
"name": "react-google-recaptcha",
"version": "0.9.7",
"description": "React Component Wrapper for Google reCAPTCHA",
"main": "lib/recaptcha-wrapper.js",
"directories": {
"lib": "lib/"
},
"scripts": {
"build": "rm -rf lib && babel src --out-dir lib",
"lint": "eslint ./",
"lint:fix": "eslint ./ --fix",
"test": "karma start --single-run",
"test-watch": "karma start",
"patch": "release patch --run",
"minor": "release minor --run",
"major": "release major --run"
},
"repository": {
"type": "git",
"url": "https://github.com/dozoisch/react-google-recaptcha.git"
},
"keywords": [
"react",
"react-component",
"captcha",
"recaptcha",
"google-recaptcha"
],
"author": "Hugo Dozois <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dozoisch/react-google-recaptcha/issues"
},
"homepage": "https://github.com/dozoisch/react-google-recaptcha",
"peerDependencies": {
"react": ">=0.15.5",
"react-async-script": ">=0.9.1"
},
"devDependencies": {
"babel-cli": "^6.0.0",
"babel-core": "^6.0.0",
"babel-eslint": "^7.0.0",
"babel-loader": "^6.0.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"babel-register": "^6.23.0",
"babel-runtime": "^6.0.0",
"chai": "^3.5.0",
"es5-shim": "^4.5.0",
"eslint": "^3.17.1",
"eslint-config-defaults": "^9.0.0",
"eslint-plugin-react": "^6.10.0",
"karma": "~0.13.9",
"karma-chai": "~0.1.0",
"karma-chrome-launcher": "~0.2.0",
"karma-cli": "~0.1.0",
"karma-mocha": "~0.2.0",
"karma-mocha-reporter": "~1.1.1",
"karma-phantomjs-launcher": "^0.2.1",
"karma-sourcemap-loader": "~0.3.5",
"karma-webpack": "~1.7.0",
"mocha": "~2.3.3",
"mt-changelog": "^0.6.2",
"phantomjs": "^1.9.18",
"react": "^15.5.0",
"react-async-script": "^0.9.1",
"react-dom": "^15.5.0",
"release-script": "^0.5.3",
"webpack": "~1.14.0"
},
"dependencies": {
"prop-types": ">=15.5.0"
}
}