forked from armand1m/react-with-firebase-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.29 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
{
"name": "react-with-firebase-auth",
"version": "1.0.0",
"description": "Higher Order Component for integrating Firebase with a React Component",
"author": "armand1m",
"license": "MIT",
"repository": "armand1m/react-with-firebase-auth",
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"keywords": [
"react",
"firebase",
"firebase-auth",
"authentication",
"higher-order-component",
"composable",
"hoc",
"google",
"facebook",
"twitter",
"email"
],
"engines": {
"node": ">=8",
"npm": ">=5"
},
"scripts": {
"test": "jest --coverage",
"build": "rollup -c",
"start": "rollup -c -w",
"lint": "prettier --check 'src/**/*.{ts,tsx}'",
"lint:fix": "prettier --write 'src/**/*.{ts,tsx}'",
"prepare": "npm run build",
"predeploy-example": "cross-env SKIP_PREFLIGHT_CHECK=true cd example && npm install && npm run build",
"deploy-example": "gh-pages -d example/build",
"travis-deploy-once": "travis-deploy-once"
},
"peerDependencies": {
"firebase": "^8.4.1",
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/runtime": "^7.9.2",
"@types/enzyme": "^3.10.5",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/firebase": "^3.2.1",
"@types/hoist-non-react-statics": "^3.3.1",
"@types/jest": "^25.1.4",
"@types/react": "^16.9.25",
"@types/react-dom": "^16.9.5",
"codecov": "^3.6.5",
"cross-env": "^7.0.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"gh-pages": "^2.0.1",
"jest": "^25.1.0",
"prettier": "^2.0.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rollup": "^2.1.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.2",
"rollup-plugin-typescript2": "^0.27.0",
"rollup-plugin-url": "^3.0.1",
"semantic-release": "^17.0.4",
"travis-deploy-once": "^5.0.11",
"ts-jest": "^25.2.1",
"typescript": "^3.8.3"
},
"files": [
"dist"
],
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom",
"setupFiles": [
"./src/setupTests.ts"
]
},
"dependencies": {}
}