This repository has been archived by the owner on May 11, 2022. It is now read-only.
forked from btroncone/ngrx-store-localstorage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.62 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
{
"name": "ngrx-store-localstorage",
"version": "7.0.0",
"description": "State and local storage syncing for @ngrx/store",
"main": "./dist/index.js",
"scripts": {
"build_dist": "rimraf dist && tsc",
"prepublish": "npm run build_dist",
"clean:test": "rimraf tmp",
"clean:dist": "rimraf dist",
"lint": "tslint src/**.ts",
"build_tests": "tsc -p spec",
"exec_tests": "jasmine",
"test": "tsc -p spec && jasmine && npm run clean:test",
"typings": "typings install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/btroncone/ngrx-store-localstorage.git"
},
"keywords": [
"redux",
"ngrx",
"store",
"localstorage",
"rxjs"
],
"author": "Brian Troncone",
"license": "MIT",
"bugs": {
"url": "https://github.com/btroncone/ngrx-store-localstorage/issues"
},
"homepage": "https://github.com/btroncone/ngrx-store-localstorage#readme",
"peerDependencies": {
"@ngrx/store": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0"
},
"devDependencies": {
"@angular/core": "^2.4.7",
"@ngrx/core": "^1.2.0",
"@ngrx/store": "^7.0.0",
"@types/core-js": "^0.9.35",
"@types/crypto-js": "^3.1.33",
"@types/jasmine": "^2.5.47",
"@types/node": "^7.0.18",
"crypto-js": "^3.1.9-1",
"es6-promise": "^3.0.2",
"es6-shim": "^0.35.0",
"jasmine": "^2.4.1",
"jasmine-core": "^2.4.1",
"localstorage-polyfill": "^1.0.1",
"rimraf": "^2.5.4",
"rxjs": "^5.1.1",
"tslint": "^4.0.2",
"typescript": "^2.1.4",
"zone.js": "^0.7.7"
},
"typings": "./dist/index.d.ts",
"dependencies": {
"lodash.merge": "^4.6.1"
}
}