-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.17 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.17 KB
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
{
"name": "refire",
"version": "3.1.0",
"description": "Declarative Firebase bindings for Redux",
"keywords": ["redux", "firebase"],
"main": "./lib/index.js",
"types": "./index.d.ts",
"scripts": {
"build": "babel src --out-dir lib",
"watch": "babel src --watch --out-dir lib",
"clean": "rimraf lib",
"lint": "eslint src",
"prepublish": "npm run clean && npm run build",
"test":
"mocha --compilers js:babel/register --recursive --require ./test/setup.js"
},
"repository": {
"type": "git",
"url": "https://github.com/hoppula/refire"
},
"license": "MIT",
"author": "Lari Hoppula",
"devDependencies": {
"babel": "^5.8.29",
"babel-core": "^5.8.25",
"babel-eslint": "^7.1.0",
"babel-loader": "^5.3.2",
"eslint": "^3.9.1",
"eslint-plugin-no-unused-vars-rest": "^1.0.4",
"expect": "^1.20.2",
"faye-websocket": "0.10.0",
"firebase-server": "^0.7.1",
"jsdom": "^9.8.3",
"mocha": "^2.5.3",
"proxyquire": "^1.7.4",
"redux": "^3.7.2",
"rimraf": "^2.5.4"
},
"dependencies": {
"firebase": "^3.9.0",
"lodash": "^4.16.6",
"redux-thunk": "^2.2.0",
"updeep": "^1.0.0"
}
}