forked from prescottprue/redux-firestore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 3.16 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
98
99
100
101
102
103
104
{
"name": "redux-firestore",
"version": "0.7.3",
"description": "Redux bindings for Firestore.",
"main": "lib/index.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"unpkg": "dist/redux-firestore.min.js",
"typings": "./index.d.ts",
"files": [
"dist",
"lib",
"es",
"src",
"index.d.ts"
],
"scripts": {
"clean": "rimraf lib dist",
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es",
"build:umd": "cross-env BABEL_ENV=commonjs NODE_ENV=development webpack",
"build:umd:min": "cross-env BABEL_ENV=commonjs NODE_ENV=production webpack",
"build": "npm run build:commonjs && npm run build:es && npm run build:umd && npm run build:umd:min",
"watch": "npm run build:es -- --watch",
"watch:lib": "npm run build:lib -- --watch",
"watch:commonjs": "npm run build:commonjs -- --watch",
"test": "mocha -R spec ./test/unit/**",
"test:cov": "nyc mocha -R spec ./test/unit/** && nyc report --reporter=lcov",
"codecov": "cat coverage/lcov.info | codecov",
"lint": "eslint src test",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --write \"src/**/*.js\" \"test/**/*.js\"",
"prepare": "npm run clean && npm run build",
"preversion": "npm run clean && npm run build",
"pre-push": "npm run lint"
},
"dependencies": {
"immer": "1.5.0",
"lodash": "^4.17.11",
"reduce-reducers": "0.4.3"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-transform-modules-commonjs": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"@babel/runtime": "^7.3.1",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-module-resolver": "^3.1.3",
"babel-plugin-transform-inline-environment-variables": "^0.4.3",
"chai": "^4.2.0",
"codecov": "^3.2.0",
"cross-env": "^5.2.0",
"eslint": "^5.15.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-google": "^0.12.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"firebase": "^5.8.4",
"husky": "^1.3.1",
"mocha": "^5.2.0",
"nyc": "^13.3.0",
"prettier": "1.16.4",
"redux": "^4.0.1",
"rimraf": "^2.6.2",
"sinon": "^7.2.7",
"sinon-chai": "^3.3.0",
"uglifyjs-webpack-plugin": "^2.1.1",
"webpack": "^4.29.3",
"webpack-cli": "^3.2.3"
},
"license": "MIT",
"homepage": "https://github.com/prescottprue/redux-firestore#readme",
"keywords": [
"firestore",
"redux",
"react-firestore",
"react-redux-firebase",
"redux-firebase",
"react-firebase",
"firebase"
],
"repository": {
"type": "git",
"url": "git+https://github.com/prescottprue/redux-firestore.git"
},
"npmFileMap": [
{
"basePath": "/dist/",
"files": [
"*.js"
]
}
]
}