-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
51 lines (51 loc) · 1.28 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
{
"name": "ngrx-store-ionic-storage",
"version": "5.0.0",
"description": "Simple storage syncing between @ngrx/store and @ionic/storage.",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"scripts": {
"build": "rimraf dist && ngc",
"prepublish": "npm run build",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/natural-apptitude/ngrx-store-ionic-storage.git"
},
"keywords": [
"redux",
"ngrx",
"store",
"ionic",
"angular"
],
"author": "Natural Apptitude Ltd.",
"license": "MIT",
"bugs": {
"url": "https://github.com/natural-apptitude/ngrx-store-ionic-storage/issues"
},
"homepage": "https://github.com/natural-apptitude/ngrx-store-ionic-storage#readme",
"files": [
"dist"
],
"devDependencies": {
"@angular/compiler": "^7.0.1",
"@angular/compiler-cli": "^7.0.1",
"@angular/core": "^7.0.1",
"@ionic/storage": "^2.2.0",
"@ngrx/effects": "^7.0.0",
"@ngrx/store": "^7.0.0",
"rimraf": "latest",
"rxjs": "^6.3.3",
"typescript": "~3.1.1",
"zone.js": "0.8.26"
},
"peerDependencies": {
"@angular/core": "^7.0.1",
"@ionic/storage": "^2.0.1",
"@ngrx/effects": "^7.0.0",
"@ngrx/store": "^7.0.0",
"rxjs": "^6.3.3"
}
}