forked from anthonyjgrove/react-google-login
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.61 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
{
"name": "react-google-login",
"version": "3.2.1",
"description": "A Google Login Component for React",
"main": "dist/google-login.js",
"scripts": {
"start": "export NODE_ENV=development&& webpack-dev-server --config webpack/webpack.config.dev.js",
"dev": "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; git add ./dist/google-login.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",
"lint:fix": "eslint ./src --fix",
"clean": "rm -rf node_modules dist; rm package-lock.json"
},
"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": "[email protected]"
},
"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": {
"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-config-ag": "1.0.4",
"jquery": "3.2.1",
"jsdom": "9.12.0",
"mocha": "3.5.3",
"pre-commit": "^1.2.2",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"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",
"react-dom": "^16.0.0"
},
"types": "./index.d.ts",
"babel": {
"env": {
"development": {
"presets": [
[
"es2015",
{
"modules": false
}
],
"react"
]
},
"test": {
"presets": [
"es2015",
"react"
]
}
}
}
}