This repository has been archived by the owner on Jan 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 134
/
package.json
54 lines (54 loc) · 1.44 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
{
"name": "ng-sidebar",
"version": "9.4.3",
"description": "[DEPRECATED] 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": [
"lib_commonjs/*",
"lib_esmodule/*",
"README.md",
"LICENSE"
],
"author": "Eugene Cheung",
"license": "MIT",
"keywords": [
"angular",
"ng",
"sidebar",
"component"
],
"main": "./lib_commonjs/index.js",
"module": "./lib_esmodule/index.js",
"jsnext:main": "./lib_esmodule/index.js",
"typings": "./lib_commonjs/index.d.ts",
"scripts": {
"lint": "tslint --project tsconfig.json src/**/*.ts",
"build:commonjs": "rimraf lib_commonjs && ngc -p tsconfig.json",
"build:esmodule": "rimraf lib_esmodule && ngc -p tsconfig.module.json",
"build": "npm run lint && npm run build:commonjs && npm run build:esmodule",
"prepare": "npm run build"
},
"peerDependencies": {
"@angular/core": ">=8.0.0",
"@angular/common": ">=8.0.0"
},
"devDependencies": {
"@angular/common": "^8.2.14",
"@angular/compiler": "^8.2.14",
"@angular/compiler-cli": "^8.2.14",
"@angular/core": "^8.2.14",
"@angular/platform-browser": "^8.2.14",
"rimraf": "^3.0.2",
"rxjs": "^6.5.5",
"tslint": "^5.20.1",
"typescript": "~3.4.0",
"zone.js": "~0.9.1"
}
}