forked from arkon/ng-sidebar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.13 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
{
"name": "ng-sidebar",
"version": "8.0.0",
"description": "Angular 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",
"ng",
"sidebar",
"component"
],
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"scripts": {
"lint": "tslint --project tsconfig.json src/**/*.ts",
"build": "npm run lint && rimraf lib && ngc",
"prepare": "npm run build"
},
"peerDependencies": {
"@angular/core": ">=6.0.0",
"@angular/common": ">=6.0.0"
},
"devDependencies": {
"@angular/common": "^6.1.0",
"@angular/compiler": "^6.1.0",
"@angular/compiler-cli": "^6.1.0",
"@angular/core": "^6.1.0",
"@angular/platform-browser": "^6.1.0",
"rimraf": "^2.6.2",
"rxjs": "^6.2.2",
"tslint": "^5.11.0",
"typescript": "^2.7.0",
"zone.js": "^0.8.26"
}
}