-
Notifications
You must be signed in to change notification settings - Fork 107
/
package.json
40 lines (40 loc) · 1.05 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
{
"name": "angular2-localstorage",
"version": "0.4.0",
"description": "Angular2 decorator to save and restore class properties automatically from LocalStorage.",
"scripts": {
"lint": "tslint ./*.ts -t verbose",
"build": "rimraf dist && tsc",
"postinstall": "typings install",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git@github.com:marcj/angular2-localstorage.git"
},
"keywords": [
"Angular2",
"LocalStorage"
],
"author": "Marc J. Schmidt",
"license": "ISC",
"bugs": {
"url": "https://github.com/marcj/angular2-localstorage/issues"
},
"homepage": "https://github.com/marcj/angular2-localstorage",
"peerDependencies": {
"@angular/core": "^2.0.0",
"core-js": "^2.4.1",
"rxjs": "^5.0.0-beta.12",
"zone.js": "^0.6.25"
},
"devDependencies": {
"@angular/core": "^2.0.0",
"@types/core-js": "^0.9.34",
"rimraf": "^2.5.4",
"rxjs": "^5.0.0-beta.12",
"tslint": "^3.15.1",
"typings": "^1.3.3",
"zone.js": "^0.6.25"
}
}