-
Notifications
You must be signed in to change notification settings - Fork 153
/
package.json
97 lines (97 loc) · 3.6 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "@fortawesome/angular-fontawesome",
"version": "1.0.0",
"description": "Angular Fontawesome, an Angular library",
"scripts": {
"test": "ng test angular-fontawesome --watch=false --browsers=ChromeCI",
"test:schematics": "ts-node --project projects/schematics/tsconfig.json node_modules/.bin/jasmine projects/schematics/src/**/*.spec.ts",
"test:demo": "ng test demo --watch=false --browsers=ChromeCI",
"test:integration": "ng e2e demo",
"test:integration:ssr": "ng e2e demo --configuration production-ssr",
"lint": "ng lint",
"start": "ng serve demo",
"start:ssr": "ng serve demo --configuration development-ssr",
"build": "ng build angular-fontawesome",
"build:watch": "ng build angular-fontawesome -c development --watch",
"build:schematics": "tsc -p projects/schematics/tsconfig.json && ts-node -O '{\"module\":\"commonjs\"}' tasks/build-schematics.ts",
"format": "prettier --write --ignore-path .gitignore '**/*.{js,ts,json,html}'",
"format:enforce": "prettier --check --ignore-path .gitignore '**/*.{js,ts,json,html}'"
},
"repository": {
"type": "git",
"url": "https://github.com/FortAwesome/angular-fontawesome"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/FortAwesome/angular-fontawesome/issues"
},
"homepage": "https://github.com/FortAwesome/angular-fontawesome",
"devDependencies": {
"@angular-devkit/build-angular": "patch:@angular-devkit/build-angular@npm%3A19.0.0#~/.yarn/patches/@angular-devkit-build-angular-npm-19.0.0-131974ef98.patch",
"@angular-devkit/core": "^19.0.0",
"@angular-devkit/schematics": "^19.0.0",
"@angular-eslint/builder": "^18.4.1",
"@angular-eslint/eslint-plugin": "^18.4.1",
"@angular-eslint/eslint-plugin-template": "^18.4.1",
"@angular-eslint/schematics": "18.4.1",
"@angular-eslint/template-parser": "^18.4.1",
"@angular/animations": "^19.0.0",
"@angular/cli": "^19.0.0",
"@angular/common": "^19.0.0",
"@angular/compiler": "^19.0.0",
"@angular/compiler-cli": "^19.0.0",
"@angular/core": "^19.0.0",
"@angular/language-service": "^19.0.0",
"@angular/platform-browser": "^19.0.0",
"@angular/platform-browser-dynamic": "^19.0.0",
"@angular/platform-server": "^19.0.0",
"@angular/router": "^19.0.0",
"@angular/ssr": "^19.0.0",
"@fortawesome/free-regular-svg-icons": "^6.7.1",
"@fortawesome/free-solid-svg-icons": "^6.7.1",
"@types/express": "^4.17.21",
"@types/jasmine": "~4.3.6",
"@types/node": "~22.9.1",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"browser-sync": "^3.0.3",
"chromedriver": "~131.0.1",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsdoc": "^46.10.1",
"eslint-plugin-prefer-arrow": "1.2.3",
"express": "^4.21.1",
"jasmine-core": "~4.5.0",
"jasmine-spec-reporter": "~7.0.0",
"karma": "~6.4.4",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.1",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"ng-packagr": "^19.0.0",
"prettier": "3.3.3",
"protractor": "~7.0.0",
"rxjs": "^7.8.1",
"ts-node": "~10.9.2",
"typescript": "~5.6.3",
"zone.js": "~0.15.0"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.7.1",
"tslib": "^2.8.1"
},
"keywords": [
"angular",
"font",
"awesome",
"fontawesome",
"icon",
"svg"
],
"peerDependencies": {
"@angular/core": "^19.0.0"
},
"schematics": "./schematics/collection.json",
"packageManager": "yarn@4.5.1"
}