forked from zoomsphere/ngx-store
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.61 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
{
"name": "ngx-store",
"version": "1.2.4",
"main": "./dist/index",
"typings": "./dist/index",
"description": "Angular decorators to automagically keep variables in HTML5 LocalStorage, SessionStorage, cookies; injectable services for managing and listening to data changes and a bit more.",
"scripts": {
"lint": "tslint ./*.ts -t verbose",
"build": "rimraf dist && ngc -p tsconfig.json",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "[email protected]:zoomsphere/ngx-store.git"
},
"keywords": [
"Angular",
"Angular2",
"Angular4",
"Angular5",
"LocalStorage",
"SessionStorage",
"Storage",
"Wrapper",
"Cookies",
"Decorator",
"Library"
],
"author": "Daniel Kucal",
"license": "ISC",
"bugs": {
"url": "https://github.com/zoomsphere/ngx-store/issues"
},
"homepage": "https://github.com/zoomsphere/ngx-store",
"peerDependencies": {
"@angular/core": ">=2.3.0",
"core-js": "^2.4.1",
"rxjs": ">=5.0.0",
"zone.js": ">=0.7.2"
},
"devDependencies": {
"@angular/compiler": "~5.0.0",
"@angular/compiler-cli": "~5.0.0",
"@angular/core": "~5.0.0",
"@angular/platform-server": "~5.0.0",
"@types/node": "^7.0.39",
"core-js": "^2.4.1",
"es6-shim": "^0.35.3",
"rimraf": "^2.5.4",
"rxjs": "^5.5.2",
"tslint": "^4.5.0",
"typescript": "^2.6.1",
"zone.js": "^0.8.16"
},
"dependencies": {
"ts-debug": "^1.0.5"
},
"//": "\"engineStrict\": false,",
"engines": {
"node": ">= 4.2.1",
"npm": ">= 5"
}
}