This repository has been archived by the owner on Sep 4, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
101 lines (101 loc) · 3.21 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "angularfire2-offline",
"version": "0.0.0-development",
"description": "Cache angularfire2 data for offline use.",
"scripts": {
"test": "karma start && npm run clean",
"test-watch": "karma start --singleRun=false --autoWatch=true",
"lint": "tslint index.ts && tslint ./**/*.ts",
"prep": "ngc && npm run build && npm run postbuild_npm",
"postbuild_npm": "cp package.json README.md .npmignore dist/ && npm run rewrite_npm_package",
"build": "webpack && cp bundles/angularfire2-offline.umd.js bundles/index.js",
"build-dev": "ngc -p tsconfig-dev.json && npm run build",
"start-dev": "onchange '*.ts' 'src/**/*.ts' --initial -- npm run build-dev",
"clean": "rimraf ./src/**/*.{d.ts,js,metadata.json,map} dist coverage bundles",
"semantic-release": "semantic-release pre && npm run prep && npm publish dist && semantic-release post",
"rewrite_npm_package": "node tools/rewrite-published-package.js"
},
"repository": {
"type": "git",
"url": "https://github.com/adriancarriger/angularfire2-offline.git"
},
"keywords": [
"angular",
"angularfire2",
"cache",
"offline",
"ng2",
"ng4",
"angular2",
"angular4",
"firebase"
],
"author": "Adrian Carriger <hello@adriancarriger.com> (http://adriancarriger.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/adriancarriger/angularfire2-offline/issues"
},
"main": "bundles/angularfire2-offline.umd.js",
"module": "index.js",
"typings": "index.d.ts",
"homepage": "https://github.com/adriancarriger/angularfire2-offline",
"dependencies": {
"json-stringify-safe": "^5.0.1",
"localforage": "1.5.0"
},
"peerDependencies": {
"@angular/core": "^4.1.3",
"angularfire2": "^4.0.0-rc.0"
},
"devDependencies": {
"@angular/common": "^4.1.3",
"@angular/compiler": "^4.1.3",
"@angular/compiler-cli": "^4.1.3",
"@angular/core": "^4.1.3",
"@angular/http": "^4.1.3",
"@angular/platform-browser": "^4.1.3",
"@angular/platform-browser-dynamic": "^4.1.3",
"@angular/platform-server": "^4.1.3",
"@types/jasmine": "2.5.38",
"@types/node": "6.0.52",
"angularfire2": "^4.0.0-rc0",
"awesome-typescript-loader": "3.0.0-beta.17",
"codelyzer": "2.0.0-beta.3",
"commitizen": "2.9.2",
"core-js": "2.4.1",
"cz-conventional-changelog": "1.2.0",
"firebase": "^4.3.1",
"istanbul-instrumenter-loader": "0.2.0",
"jasmine-core": "2.5.2",
"karma": "1.3.0",
"karma-chrome-launcher": "2.0.0",
"karma-coverage": "1.1.1",
"karma-jasmine": "1.0.2",
"karma-mocha-reporter": "^2.1.0",
"karma-remap-coverage": "0.1.2",
"karma-sourcemap-loader": "0.3.7",
"karma-webpack": "1.8.0",
"loader-utils": "0.2.16",
"localforage": "1.5.0",
"onchange": "^3.2.1",
"reflect-metadata": "0.1.8",
"rimraf": "^2.6.1",
"rxjs": "5.1.1",
"semantic-release": "^6.3.2",
"source-map-loader": "0.1.5",
"ts-helpers": "1.1.2",
"tslint": "^4.3.0",
"tslint-loader": "3.3.0",
"typescript": "~2.3.3",
"webpack": "2.1.0-beta.27",
"zone.js": "0.8.11"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"publishConfig": {
"tag": "next"
}
}