-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.36 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
{
"name": "reduxfire",
"version": "0.1.1",
"description": "Simple Firebase bindings for Redux",
"main": "dist/reduxfire.cjs.js",
"module": "dist/reduxfire.esm.js",
"browser": "dist/reduxfire.umd.js",
"scripts": {
"build": "rollup -c",
"start": "rollup -c -w",
"test": "jest",
"preexample": "npm run build",
"example": "cp ./dist/reduxfire.umd.js ./examples/reduxfire.js && http-server ./examples -o",
"test:watch": "npm test -- --watch",
"test:coverage": "npm test -- --coverage"
},
"author": "Thadeu Luz <thadeuluz@gmail.com>",
"license": "MIT",
"devDependencies": {
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"deep-freeze": "0.0.1",
"eslint": "^4.6.1",
"eslint-config-airbnb-base": "^12.0.0",
"eslint-plugin-import": "^2.7.0",
"firebase": "^4.3.0",
"http-server": "^0.10.0",
"jest": "^21.0.1",
"rollup": "^0.49.2",
"rollup-plugin-babel": "^3.0.2"
},
"jest": {
"testEnvironment": "node"
},
"directories": {
"doc": "docs",
"example": "examples"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ThadeuLuz/reduxfire.git"
},
"bugs": {
"url": "https://github.com/ThadeuLuz/reduxfire/issues"
},
"homepage": "https://github.com/ThadeuLuz/reduxfire#readme",
"keywords": [
"Redux",
"Firebase",
"React"
]
}