This repository has been archived by the owner on Sep 20, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
55 lines (55 loc) · 1.52 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
{
"name": "rx-firebase",
"version": "0.5.0",
"description": "Extends Firebase websocket client with RxJS methods.",
"main": "src/index.js",
"module": "src/index.mjs",
"jsnext:main": "src/index.mjs",
"directories": {
"lib": "src"
},
"repository": "github:dinoboff/rx-firebase",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"clean": "rm -rf lib/ coverage/ .nyc_output/ .esm-cache/",
"build": "./tools/bin/build.sh",
"cover": "nyc --reporter lcov --report-dir coverage/ --reporter text --extension .mjs npm test",
"coveralls": "npm run cover && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage",
"lint": "eslint --ext js,mjs src/ test/",
"format": "npm run lint -- --fix",
"release": "./tools/bin/release.sh",
"test": "mocha test/index.js"
},
"keywords": [
"Observable",
"RxJS",
"Firebase"
],
"author": "Damien Lebrun",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.1.2",
"coveralls": "^2.11.9",
"eslint": "^4.5.0",
"eslint-config-xo": "^0.18.2",
"mocha": "^3.5.0",
"nyc": "^11.1.0",
"rollup": "^0.49.2",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^8.2.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify": "^2.0.1",
"rxjs": "^5.4.3",
"sinon": "^3.2.1",
"sinon-chai": "^2.13.0"
},
"dependencies": {
"@std/esm": "^0.7.1"
},
"private": true
}