-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
98 lines (98 loc) · 2.6 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "react-google-authorize",
"version": "1.0.4",
"description": "A Google Authorize Component for React",
"main": "dist/google-authorize.js",
"scripts": {
"start": "export NODE_ENV=development&& webpack-dev-server --config webpack/webpack.config.dev.js",
"bundle": "export NODE_ENV=production&& webpack -p --config webpack/webpack.config.prod.js",
"test": "export NODE_ENV=test&& mocha --compilers js:babel-core/register --require ./test/test_helper.js --recursive ./test",
"test:watch": "npm run test -- --watch",
"lint": "eslint src/ --fix",
"clean": "rm -rf node_modules"
},
"repository": {
"type": "git",
"url": "git+https://github.com/selectom/react-google-authorize.git"
},
"keywords": [
"react",
"reactjs",
"react-component",
"google-login",
"google-oAuth2",
"google-oAuth",
"google-authorize"
],
"author": {
"name": "Alon Diamant",
"email": "alon@selectom.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/selectom/react-google-authorize/issues"
},
"homepage": "https://github.com/selectom/react-google-authorize",
"dependencies": {
"prop-types": "^15.6.0"
},
"devDependencies": {
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"autoprefixer": "7.1.4",
"babel": "6.23.0",
"babel-core": "6.26.0",
"babel-eslint": "8.0.1",
"babel-loader": "7.1.2",
"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.10",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"chai": "4.1.2",
"chai-jquery": "2.0.0",
"eslint": "3.19.0",
"eslint-config-airbnb": "15.0.2",
"eslint-plugin-import": "2.3.0",
"eslint-plugin-jsx-a11y": "5.0.3",
"eslint-plugin-react": "7.0.1",
"jquery": "3.2.1",
"jsdom": "9.12.0",
"mocha": "3.5.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-fontawesome": "1.6.1",
"uglifyjs-webpack-plugin": "^0.4.6",
"webpack": "3.7.1",
"webpack-dev-server": "2.9.2"
},
"peerDependencies": {
"react": "^16.0.0 || ^17.0.0",
"react-dom": "^16.0.0 || ^17.0.0"
},
"types": "./index.d.ts",
"babel": {
"env": {
"development": {
"presets": [
[
"es2015",
{
"modules": false
}
],
"react"
]
},
"test": {
"presets": [
"es2015",
"react"
]
}
}
},
"volta": {
"node": "14.18.3"
}
}