forked from marcj/angular2-localstorage
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
55 lines (55 loc) · 1.4 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
{
"name": "ngx-store",
"version": "0.6.2",
"main": "./dist/index",
"typings": "./dist/index",
"description": "Angular decorator to save and restore class properties automatically from LocalStorage and SessionStorage.",
"scripts": {
"lint": "tslint ./*.ts -t verbose",
"build": "rimraf dist && ngc -p tsconfig.json",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git@github.com:zoomsphere/ngx-store.git"
},
"keywords": [
"Angular",
"Angular2",
"Angular4",
"LocalStorage",
"SessionStorage",
"Storage",
"Wrapper"
],
"author": "Daniel Kucal & Marc J. Schmidt",
"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": "~4.0.0",
"@angular/compiler-cli": "~4.0.0",
"@angular/core": "~4.0.0",
"@angular/platform-server": "~4.0.0",
"@types/node": "^7.0.0",
"core-js": "^2.4.1",
"es6-shim": "^0.35.3",
"rimraf": "^2.5.4",
"rxjs": ">=5.0.0",
"tslint": "^4.5.0",
"typescript": "~2.2.2",
"zone.js": "^0.8.4"
},
"dependencies": {
"is-empty": "^1.2.0"
}
}