-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
64 lines (64 loc) · 1.9 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
{
"name": "react-google-invisible-recaptcha",
"author": "szchenghuang <[email protected]>",
"version": "1.0.0-rc.2",
"description": "A React component which is simply interested in Google invisible reCaptcha.",
"main": "dist/index.js",
"keywords": [
"react",
"google",
"invisible",
"recaptcha",
"typescript"
],
"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 --extensions .tsx && npx tsc --emitDeclarationOnly",
"test": "echo \"No test specified\" && exit 0"
},
"dependencies": {
"@types/uuid": "^8.3.0",
"uuid": "^8.3.2"
},
"peerDependencies": {
"react": "^17.0.0-0"
},
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "^7.14.0",
"@babel/preset-env": "^7.14.1",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.13.0",
"@types/react": "^17.0.5",
"@types/react-dom": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.22.1",
"babel-loader": "^8.2.2",
"eslint": "^7.26.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-react": "^7.23.2",
"html-webpack-plugin": "^5.3.1",
"react": "^17.0.0-0",
"react-dom": "^17.0.0-0",
"typescript": "^4.2.4",
"webpack": "^5.36.2",
"webpack-cli": "^4.7.0"
},
"directories": {
"doc": "docs",
"example": "example"
},
"types": "dist/index.d.ts"
}