forked from t49tran/react-google-recaptcha-v3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.74 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
{
"name": "react-google-recaptcha-v3",
"version": "1.9.4",
"description": "React component for google-recaptcha v3",
"module": "dist/react-google-recaptcha-v3.esm.js",
"main": "dist/react-google-recaptcha-v3.cjs.js",
"types": "dist/types/index.d.ts",
"scripts": {
"test": "jest --verbose --env=jsdom",
"build": "rollup -c rollup.config.js",
"prepublishOnly": "npm run test && npm run build",
"build-example": "webpack --config webpack.config.js",
"lint": "tslint -c tslint.json 'src/**/*.ts'"
},
"author": "Duong Tran",
"homepage": "https://github.com/t49tran/react-google-recaptcha-v3",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/t49tran/react-google-recaptcha-v3"
},
"peerDependencies": {
"react": "^17.0",
"react-dom": "^17.0"
},
"dependencies": {
"hoist-non-react-statics": "^3.3.2"
},
"devDependencies": {
"@testing-library/react": "11.2.6",
"@testing-library/react-hooks": "5.1.1",
"@types/hoist-non-react-statics": "3.3.1",
"@types/jest": "24.0.13",
"@types/node": "14.0.1",
"@types/react": "17.0.2",
"@types/react-dom": "17.0.2",
"awesome-typescript-loader": "5.2.1",
"dotenv-webpack": "1.8.0",
"jest": "26.6.3",
"react": "17.0.2",
"react-dom": "17.0.2",
"rollup": "1.14.3",
"rollup-plugin-commonjs": "10.0.0",
"rollup-plugin-node-resolve": "5.0.1",
"rollup-plugin-sourcemaps": "0.4.2",
"rollup-plugin-terser": "7.0.2",
"rollup-plugin-typescript2": "0.27.1",
"source-map-loader": "0.2.4",
"ts-jest": "26.5.4",
"tslint": "5.15.0",
"tslint-react": "4.0.0",
"typescript": "4.0.3",
"webpack": "4.43.0",
"webpack-cli": "3.3.11",
"webpack-dev-server": "3.11.0"
}
}