-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
77 lines (77 loc) · 2.27 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
73
74
75
76
77
{
"name": "firebase-rxjs",
"version": "0.1.2",
"description": "Firebase with Observables, Type Checking of Schema, Zone.js aware and Angular ready.",
"keywords": [
"Firebase",
"zone.js",
"Observables",
"TypeScript",
"Schema",
"Static Typing",
"RxJS"
],
"main": "./bundles/firebase-rxjs.umd.js",
"module": "./bundles/firebase-rxjs.es5.js",
"es2015": "./index.js",
"typings": "./index.d.ts",
"scripts": {
"docs": "./scripts/build.sh build docs",
"upload-coverage": "coveralls < coverage/lcov.info",
"karma": "karma",
"test:with-zone": "COVERAGE=true karma start --single-run",
"test:no-zone": "karma start testing/karma.conf.no-zone.js --single-run",
"test": "npm run test:with-zone && npm run test:no-zone",
"e2e": "./scripts/e2e-test.sh",
"build": "./scripts/build.sh build",
"release": "standard-version"
},
"author": "Gabriel Terwesten <gabriel@terwesten.net>",
"license": "MIT",
"dependencies": {
"@angular/core": "^4.0.3",
"firebase": "^3.8.0",
"rxjs": "^5.3.0",
"zone.js": "^0.8.0"
},
"devDependencies": {
"@angular/common": "^4.0.3",
"@angular/compiler": "^4.0.3",
"@angular/compiler-cli": "^4.0.3",
"@angular/platform-browser": "^4.0.3",
"@angular/platform-browser-dynamic": "^4.0.3",
"@types/jasmine": "^2.5.47",
"@types/node": "^7.0.13",
"awesome-typescript-loader": "^3.1.2",
"core-js": "^2.4.1",
"coveralls": "^2.13.0",
"cpy-cli": "^1.0.1",
"jasmine": "^2.5.3",
"karma": "^1.6.0",
"karma-chrome-launcher": "^2.0.0",
"karma-jasmine": "^1.1.0",
"karma-jasmine-html-reporter": "^0.2.2",
"karma-mocha-reporter": "^2.2.3",
"karma-remap-istanbul": "^0.6.0",
"karma-webpack": "^2.0.3",
"rimraf": "^2.6.1",
"rollup": "^0.41.6",
"sourcemap-istanbul-instrumenter-loader": "^0.2.0",
"standard-version": "^4.0.0",
"typedoc": "^0.5.10",
"typescript": "^2.2.2",
"uglifyjs": "^2.4.10",
"webpack": "^2.4.1"
},
"directories": {
"doc": "docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blaugold/firebase-rxjs.git"
},
"bugs": {
"url": "https://github.com/blaugold/firebase-rxjs/issues"
},
"homepage": "https://github.com/blaugold/firebase-rxjs#readme"
}