forked from zefoy/ngx-font-picker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.39 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "ngx-font-picker",
"description": "Google fonts font picker widget for Angular",
"bugs": "https://github.com/zefoy/ngx-font-picker/issues",
"version": "14.0.0",
"license": "MIT",
"private": true,
"scripts": {
"ng": "ng",
"lint": "ng lint",
"start": "ng serve app",
"build": "ng build lib",
"deploy": "deploy-to-git",
"prepare": "ng build lib --configuration production",
"publish": "npm publish ./dist/lib",
"predeploy": "rimraf ./dist/app && mkdirp ./dist/app"
},
"repository": {
"type": "git",
"url": "https://github.com/zefoy/ngx-font-picker.git"
},
"config": {
"deployToGit": {
"repository": "[email protected]:zefoy/ngx-font-picker.git",
"branch": "gh-pages",
"folder": "dist/app",
"script": "ng build app --configuration production --base-href=ngx-font-picker --delete-output-path=false",
"commit": "Publishing $npm_package_version",
"user": {
"name": "ZEF Devel",
"email": "[email protected]"
}
}
},
"dependencies": {
"@angular/cdk": "^15.2.0",
"@angular/common": "^15.2.0",
"@angular/compiler": "^15.2.0",
"@angular/core": "^15.2.0",
"@angular/flex-layout": "15.0.0-beta.42",
"@angular/forms": "^15.2.0",
"@angular/platform-browser": "^15.2.0",
"@angular/platform-browser-dynamic": "^15.2.0",
"core-js": "^3.28.0",
"ngx-scrollbar": "^11.0.0",
"rxjs": "^7.8.0",
"webfontloader": "^1.6.28"
},
"devDependencies": {
"@angular-devkit/build-angular": "^15.2.0",
"@angular-eslint/builder": "^15.2.0",
"@angular-eslint/eslint-plugin": "^15.2.0",
"@angular-eslint/eslint-plugin-template": "^15.2.0",
"@angular-eslint/schematics": "^15.2.0",
"@angular-eslint/template-parser": "^15.2.0",
"@angular/cli": "^15.2.0",
"@angular/compiler-cli": "^15.2.0",
"@types/node": "~18.14.0",
"@types/webfontloader": "^1.6.35",
"@typescript-eslint/eslint-plugin": "5.53.0",
"@typescript-eslint/parser": "5.53.0",
"codelyzer": "^6.0.2",
"cpx": "^1.5.0",
"deploy-to-git": "^0.4.1",
"eslint": "^8.35.0",
"mkdirp": "^2.1.3",
"ng-packagr": "^15.2.0",
"rimraf": "^4.1.2",
"stylelint": "^15.2.0",
"stylelint-config-standard": "^30.0.0",
"stylelint-order": "^6.0.0",
"terser": "^5.16.5",
"ts-node": "^10.9.1",
"typescript": "~4.8.0",
"watch": "^1.0.2",
"zone.js": "^0.12.0"
}
}