-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
64 lines (64 loc) · 1.71 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
{
"name": "redux-fire-auth",
"version": "2.0.2",
"description": "Helper to keep the Redux State in sync with the Firebase Auth State.",
"main": "dist/redux-fire-auth.js",
"module": "src/index.js",
"scripts": {
"lint": "eslint src/**",
"test": "cross-env NODE_ENV=test jest",
"prebuild": "npm run test && npm run lint",
"build": "rimraf dist && cross-env NODE_ENV=production webpack --mode=production",
"prepublishOnly": "npm run build",
"coverage": "cross-env NODE_ENV=test jest --coverage --coverageReporters=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:flasd/redux-fire-auth.git"
},
"keywords": [
"redux",
"firebase",
"session",
"auth"
],
"author": "Marcel de Oliveira Coelho",
"license": "MIT",
"bugs": {
"url": "https://github.com/flasd/redux-fire-auth/issues"
},
"homepage": "https://github.com/flasd/redux-fire-auth#readme",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-jest": "^23.0.1",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.7.0",
"coveralls": "^3.0.1",
"cross-env": "^5.1.6",
"dotenv": "^6.0.0",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"firebase": "^4.13.1",
"jest": "^23.1.0",
"redux": "^3.7.2",
"rimraf": "^2.6.2",
"webpack": "^4.10.2",
"webpack-command": "^0.2.0"
},
"peerDependencies": {
"firebase": "^4.13.0",
"redux": "^3.7.2"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js"
],
"testMatch": [
"<rootDir>/src/**/?(*.)test.js"
],
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.js$"
]
}
}