forked from arkon/ng-sidebar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.15 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
{
"name": "ng-sidebar",
"version": "3.3.1",
"description": "Angular 2+ sidebar component.",
"repository": {
"type": "git",
"url": "https://github.com/arkon/ng-sidebar.git"
},
"homepage": "http://echeung.me/ng-sidebar/",
"bugs": {
"url": "https://github.com/arkon/ng-sidebar/issues"
},
"files": [
"src/*",
"lib/*",
"README.md",
"LICENSE"
],
"author": "Eugene Cheung",
"license": "MIT",
"keywords": [
"angular",
"angular2",
"angular4",
"ng2",
"ng4",
"sidebar",
"component"
],
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"scripts": {
"lint": "tslint src/**/*.ts",
"build": "npm run lint && rimraf lib && ngc",
"prepublish": "npm run build"
},
"peerDependencies": {
"@angular/core": "^2.3.0",
"@angular/common": "^2.3.0"
},
"devDependencies": {
"@angular/common": "^2.4.9",
"@angular/compiler": "^2.4.9",
"@angular/compiler-cli": "^2.4.9",
"@angular/core": "^2.4.9",
"@angular/platform-browser": "^2.4.9",
"rimraf": "^2.6.1",
"rxjs": "5.2.0",
"tslint": "^4.5.1",
"typescript": "^2.2.1",
"zone.js": "^0.7.7"
}
}