-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
78 lines (78 loc) · 2.79 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-favicon-demo",
"version": "0.0.0-development",
"scripts": {
"-----COMMON-----": "-------------------------------------",
"ng": "ng",
"prettier": "prettier",
"prettier:base": "prettier \"**/*.{js,json,css,md,ts,html,component.html}\"",
"prettier:check": "yarn run prettier:base -l",
"prettier:write": "yarn run prettier:base --write",
"start": "yarn run demo:start",
"test": "yarn run demo:test",
"lint": "ng lint",
"------DEMO------": "-------------------------------------",
"demo:start": "yarn run ng serve",
"demo:test": "yarn run ng test",
"demo:lint:check": "yarn run ng lint",
"demo:lint:fix": "yarn run demo:lint:base --fix",
"demo:build:base": "yarn run ng build --project=ngx-favicon-demo",
"demo:build:prod": "yarn run ng build --project=ngx-favicon-demo --configuration=production",
"-------LIB------": "-------------------------------------",
"lib:build:base": "yarn run ng build --project=ngx-favicon",
"lib:build:watch": "yarn run lib:build:base --watch",
"lib:build:prod": "yarn run lib:build:base --configuration=production",
"semantic-release": "semantic-release"
},
"private": true,
"dependencies": {
"@angular/animations": "^14.1.2",
"@angular/common": "^14.1.2",
"@angular/compiler": "^14.1.2",
"@angular/core": "^14.1.2",
"@angular/forms": "^14.1.2",
"@angular/platform-browser": "^14.1.2",
"@angular/platform-browser-dynamic": "^14.1.2",
"@angular/router": "^14.1.2",
"core-js": "3.6.5",
"rxjs": "6.6.3",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^14.1.3",
"@angular-eslint/builder": "^14.0.1",
"@angular-eslint/eslint-plugin": "^14.0.1",
"@angular-eslint/eslint-plugin-template": "^14.0.1",
"@angular-eslint/schematics": "^14.0.1",
"@angular-eslint/template-parser": "^14.0.1",
"@angular/cli": "^14.1.3",
"@angular/compiler-cli": "^14.1.2",
"@angular/language-service": "^14.1.2",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "2.0.8",
"@types/node": "14.6.4",
"@typescript-eslint/eslint-plugin": "5.3.0",
"@typescript-eslint/parser": "5.3.0",
"eslint": "^8.2.0",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "6.3.11",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "3.0.3",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"ng-packagr": "^14.1.3",
"prettier": "2.5.1",
"protractor": "7.0.0",
"semantic-release": "17.1.1",
"ts-node": "9.0.0",
"tsickle": "^0.46.3",
"tslib": "^2.3.1",
"tslint-config-prettier": "1.18.0",
"typescript": "4.7.2"
},
"repository": {
"type": "git",
"url": "https://github.com/cloudnc/ngx-favicon.git"
}
}