-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.48 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.48 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
{
"name": "react-github-login",
"version": "1.0.3",
"description": "A React Component for GitHub Login",
"main": "dist/GitHubLogin.js",
"scripts": {
"build": "NODE_ENV=production webpack -p --config webpack.config.dist.js",
"start": "NODE_ENV=development webpack-dev-server --config webpack.config.js",
"lint": "eslint src",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/checkr/react-github-login.git"
},
"keywords": [
"react",
"reactjs",
"react-component",
"github-login",
"react-github-login"
],
"license": "MIT",
"peerDependencies": {
"prop-types": "^15.5.10",
"react": "^15.6.1"
},
"devDependencies": {
"autoprefixer": "^7.1.2",
"babel": "^6.5.2",
"babel-core": "^6.6.5",
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.3",
"babel-loader": "^7.1.1",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.5.0",
"enzyme": "^2.6.0",
"eslint": "^4.2.0",
"eslint-config-airbnb": "^15.0.2",
"eslint-plugin-react": "^7.1.0",
"fbjs": "^0.8.6",
"jest": "^20.0.4",
"object-assign": "^4.1.0",
"react": "^15.1.0",
"react-addons-test-utils": "^15.1.0",
"react-css-modules": "^4.5.2",
"react-dom": "^15.1.0",
"react-test-renderer": "^15.4.1",
"webpack": "3.3.x",
"webpack-dev-server": "2.5.x"
},
"babel": {
"presets": [
"es2015",
"react",
"stage-0"
]
}
}