forked from dinoboff/rx-firebase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.04 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
{
"name": "rx-firebase",
"version": "0.4.0",
"description": "Extends Firebase websocket client with RxJS methods.",
"main": "src/rx-firebase.js",
"directories": {
"lib": "src"
},
"repository": "github:dinoboff/rx-firebase",
"engines": {
"node": ">=4.0.0"
},
"scripts": {
"clean": "rm -rf lib/ _test/ coverage/",
"build": "./tools/bin/build.sh",
"cover": "./tools/bin/cover.sh",
"coveralls": "./tools/bin/cover.sh && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage",
"lint": "eslint src/ --fix",
"lint-no-fix": "eslint src/",
"postinstall": "jspm install",
"release": "./tools/bin/release.sh",
"test": "./tools/bin/test.sh",
"version": "cd dist && npm version --no-git-tag-version \"$npm_package_version\""
},
"keywords": [
"Observable",
"RxJS",
"Firebase"
],
"author": "Damien Lebrun",
"license": "MIT",
"devDependencies": {
"babel-eslint": "^6.0.4",
"coveralls": "^2.11.9",
"eslint": "^2.11.1",
"eslint-config-xo": "^0.14.1",
"eslint-plugin-babel": "^3.2.0",
"istanbul": "^0.4.3",
"jspm": "^0.17.0-beta.17",
"mocha": "^2.5.3",
"remap-istanbul": "^0.6.4",
"source-map-support": "^0.4.0"
},
"jspm": {
"name": "rx-firebase",
"main": "rx-firebase.js",
"dependencies": {
"rxjs": "npm:[email protected]",
"sinon-chai": "npm:sinon-chai@^2.8.0"
},
"devDependencies": {
"plugin-babel": "npm:systemjs-plugin-babel@^0.0.12"
},
"peerDependencies": {
"assert": "github:jspm/nodelibs-assert@^0.2.0-alpha",
"buffer": "github:jspm/nodelibs-buffer@^0.2.0-alpha",
"chai": "npm:chai@^3.5.0",
"child_process": "github:jspm/nodelibs-child_process@^0.2.0-alpha",
"process": "github:jspm/nodelibs-process@^0.2.0-alpha",
"sinon": "npm:sinon@^1.17.4",
"util": "github:jspm/nodelibs-util@^0.2.0-alpha",
"vm": "github:jspm/nodelibs-vm@^0.2.0-alpha"
},
"overrides": {
"npm:[email protected]": {
"ignore": [
"test.js"
]
}
}
}
}