-
Notifications
You must be signed in to change notification settings - Fork 47
/
package.json
63 lines (63 loc) · 2.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
54
55
56
57
58
59
60
61
62
63
{
"$schema": "./node_modules/ng-packagr/package.schema.json",
"name": "ngx-admin-lte",
"version": "3.0.0-beta.1",
"ngPackage": {
"lib": {
"entryFile": "src/index.ts"
}
},
"license": "MIT",
"description": "AdminLTE theme for angular",
"scripts": {
"lint": "tslint --config tslint.json --project tsconfig.json",
"transpile": "ng-packagr -p package.json",
"build": "npm run lint && npm run transpile && cp -r src/public dist/public && cp src/style.css dist/",
"compodoc": "./node_modules/.bin/compodoc -p tsconfig.json --output docs",
"package": "npm run build && cd dist && npm publish"
},
"main": "bundles/ngx-admin-lte.umd.js",
"module": "esm5/ngx-admin-lte.js",
"es2015": "esm2015/ngx-admin-lte.js",
"typings": "ngx-admin-lte.d.ts",
"metadata": "ngx-admin-lte.metadata.json",
"private": false,
"peerDependencies": {
"@angular/common": ">=8.2.9",
"@angular/core": ">=8.2.9",
"@angular/platform-browser": ">=8.2.9",
"@angular/platform-browser-dynamic": ">=8.2.9",
"@angular/router": ">=8.2.9",
"@ngx-translate/core": "^11.0.1",
"@ngx-translate/http-loader": "^4.0.0",
"admin-lte": "<2.4",
"ngx-toastr": "^11.1.0",
"bootstrap": "<4",
"font-awesome": "<5",
"ionicons": "<4",
"jquery": "<4",
"rxjs": ">=6.4.0",
"zone.js": ">=0.9.1",
"core-js": ">=2.5.1"
},
"devDependencies": {
"@angular/animations": ">=8.2.9",
"@angular/common": ">=8.2.9",
"@angular/compiler": ">=8.2.9",
"@angular/compiler-cli": ">=8.2.9",
"@angular/core": ">=8.2.9",
"@angular/platform-browser": ">=8.2.9",
"@angular/platform-browser-dynamic": ">=8.2.9",
"@angular/router": ">=8.2.9",
"@compodoc/compodoc": "^1.0.1",
"@types/node": "^8.0.28",
"codelyzer": "~3.1.2",
"core-js": ">=2.5.1",
"ng-packagr": "^5.7.0",
"rxjs": ">=6.4.0",
"ts-node": "~7.0.0",
"tslint": "~5.15.0",
"typescript": "~3.5.3",
"zone.js": ">=0.9.1"
}
}