-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
53 lines (53 loc) · 1.39 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
{
"name": "cycle-firebase",
"version": "1.2.0",
"description": "Cycle driver for my favorite realtime database :)!",
"main": "lib/firebase.js",
"scripts": {
"test": "mocha --compilers js:babel-register",
"build": "babel -d lib/ src/",
"coverage": "istanbul cover _mocha -x pushId.js -- -R spec --compilers js:babel-register",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dralletje/cycle-firebase.git"
},
"keywords": [
"cyclejs",
"firebase",
"realtime",
"declarative",
"driver"
],
"peerDependencies": {
"rx": ">=2"
},
"author": "Michiel Dral <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/dralletje/cycle-firebase/issues"
},
"homepage": "https://github.com/dralletje/cycle-firebase#readme",
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.5.1",
"babel-preset-es2015": "^6.5.0",
"babel-register": "^6.4.3",
"chai": "^3.5.0",
"chai-spies": "^0.7.1",
"eslint": "^1.9.0",
"eslint-config-cycle": "^3.1.0",
"eslint-plugin-cycle": "^1.0.2",
"eslint-plugin-no-class": "^0.1.0",
"istanbul": "^1.0.0-alpha.2",
"markdox": "0.1.10",
"mocha": "^2.4.5",
"mockery": "^1.4.0",
"rx": "^4.0.0"
},
"dependencies": {
"babel-plugin-transform-object-rest-spread": "^6.6.5",
"firebase": "^2.4.1"
}
}