-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
47 lines (47 loc) · 1.54 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
{
"name": "react-facebook-login-component",
"version": "0.9.2",
"description": "React Component that lets you instantly login through facebook platform",
"main": "dist/react-facebook-login-component",
"scripts": {
"clear": "rm -rf dist && mkdir dist",
"build:develop": "cross-env NODE_ENV=development webpack src/index.js dist/react-facebook-login-component.js",
"build:production": "cross-env NODE_ENV=production webpack src/index.js dist/react-facebook-login-component.min.js",
"build:publish": "npm run build:develop && npm run build:production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kennetpostigo/react-facebook-login-component.git"
},
"keywords": [
"React",
"Facebook",
"Login",
"Auth",
"oauth",
"component"
],
"author": "Kennet Postigo <[email protected]> (http://kpostigo.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/kennetpostigo/react-facebook-login-component/issues"
},
"homepage": "https://github.com/kennetpostigo/react-facebook-login-component#readme",
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0 || ^16.0.0"
},
"devDependencies": {
"babel-cli": "6.4.0",
"babel-core": "6.4.0",
"babel-eslint": "4.1.6",
"babel-loader": "6.2.1",
"babel-preset-es2015": "6.3.13",
"babel-preset-react": "6.3.13",
"babel-preset-stage-1": "^6.24.1",
"cross-env": "1.0.7",
"eslint": "1.10.3",
"eslint-plugin-babel": "3.0.0",
"eslint-plugin-react": "3.15.0",
"webpack": "1.12.14"
}
}