forked from prescottprue/redux-firebasev3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.38 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
{
"name": "redux-firebasev3",
"version": "0.0.2",
"description": "Use Firebase version 3 with React and Redux in ES6",
"main": "build/index.js",
"scripts": {
"build": "babel source --out-dir build",
"build-dev": "babel source --out-dir build --watch --source-maps inline",
"watch": "npm run build -- --watch",
"clean": "rimraf build",
"prepublish": "npm run clean && npm run build",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"test": "mocha -R spec --compilers js:babel-core/register ./test/setup.js ./test/**/*.spec.js",
"test:cov": "babel-node $(npm bin)/isparta cover --report lcov ./node_modules/mocha/bin/_mocha -- ./test/** --recursive"
},
"contributors": [
{
"name": "Tiberiu Craciun",
"email": "[email protected]"
},
{
"name": "Prescott Prue",
"email": "[email protected]"
},
{
"name": "Justin Handley",
"email": "[email protected]"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/prescottprue/redux-firebasev3.git"
},
"bugs": {
"url": "https://github.com/prescottprue/redux-firebasev3/issues"
},
"homepage": "https://github.com/prescottprue/redux-firebasev3#readme",
"keywords": [
"firebase",
"redux",
"react"
],
"dependencies": {
"es6-promise": "^3.2.1",
"immutable": "^3.7.6"
},
"peerDependencies": {
"firebase": "^3.2.0",
"lodash": "^4.13.1",
"react": "^0.14.6 || ^15.0.0",
"react-redux": "^4.0.6",
"redux": "^3.0.5"
},
"devDependencies": {
"babel": "^6.3.26",
"babel-cli": "^6.7.5",
"babel-core": "^6.7.6",
"babel-eslint": "^6.1.2",
"babel-plugin-lodash": "^3.2.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-1": "^6.3.13",
"chai": "^3.5.0",
"eslint": "^2.13.1",
"eslint-config-standard": "^5.3.1",
"eslint-config-standard-react": "^2.5.0",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-promise": "^1.3.2",
"eslint-plugin-react": "^5.2.2",
"eslint-plugin-standard": "^1.3.2",
"isparta": "^4.0.0",
"mocha": "^2.5.3"
},
"npmName": "redux-firebasev3",
"npmFileMap": [
{
"basePath": "/build/",
"files": [
"*.js"
]
}
]
}