forked from anthonyjgrove/react-google-login
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.32 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.32 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "react-google-login",
"version": "5.0.4",
"description": "A Google Login Component for React",
"main": "dist/google-login.js",
"scripts": {
"start": "webpack-dev-server --config webpack/webpack.config.dev.js",
"dev": "npm run start",
"bundle": "webpack --config webpack/webpack.config.prod.js; git add ./dist/google-login.js",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix",
"fresh": "rm -rf node_modules dist; rm package-lock.json; npm i"
},
"pre-commit": [
"test",
"lint",
"bundle"
],
"repository": {
"type": "git",
"url": "git+https://github.com/anthonyjgrove/react-google-login.git"
},
"keywords": [
"react",
"reactjs",
"react-component",
"google-login",
"google-oAuth2",
"google-oAuth"
],
"author": {
"name": "Anthony Grove",
"email": "anthony@th3legend.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/anthonyjgrove/react-google-login/issues"
},
"homepage": "https://github.com/anthonyjgrove/react-google-login",
"dependencies": {
"@types/react": "*",
"prop-types": "^15.6.0"
},
"devDependencies": {
"@babel/core": "7.4.3",
"@babel/plugin-proposal-object-rest-spread": "7.4.3",
"@babel/plugin-transform-runtime": "7.4.3",
"@babel/preset-env": "7.4.3",
"@babel/preset-react": "7.0.0",
"autoprefixer": "9.5.0",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "24.7.1",
"babel-loader": "8.0.5",
"babel-plugin-transform-react-constant-elements": "6.23.0",
"babel-plugin-transform-react-inline-elements": "6.22.0",
"babel-plugin-transform-react-remove-prop-types": "0.4.24",
"enzyme": "3.9.0",
"enzyme-adapter-react-16": "1.11.2",
"eslint-config-ag": "2.0.0",
"jest": "24.7.1",
"pre-commit": "^1.2.2",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-fontawesome": "1.6.1",
"react-hot-loader": "4.8.2",
"react-test-renderer": "16.8.6",
"uglifyjs-webpack-plugin": "2.1.2",
"webpack": "4.29.6",
"webpack-cli": "3.3.0",
"webpack-dev-server": "3.2.1"
},
"peerDependencies": {
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"types": "./index.d.ts",
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
}
}