-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
83 lines (83 loc) · 2.97 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
{
"name": "ngx-toggle-example",
"version": "0.0.0-development",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"build:app": "ng build ngx-toggle-example --configuration=production --base-href=/ngx-toggle/",
"build:ci": "npm run build:lib && npm run build:app",
"build:lib": "ng build ngx-toggle --configuration=production",
"postbuild:lib": "copyfiles README.md dist/ngx-toggle",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"test:app": "ng test ngx-toggle-example --no-watch --no-progress --browsers=ChromeHeadlessCI",
"test:ci": "npm run test:lib && npm run test:app",
"test:lib": "ng test ngx-toggle --no-watch --no-progress --browsers=ChromeHeadlessCI",
"lint": "ng lint",
"prepare": "husky install",
"semantic-release": "semantic-release"
},
"private": true,
"dependencies": {
"@angular/animations": "^15.1.5",
"@angular/common": "^15.1.5",
"@angular/compiler": "^15.1.5",
"@angular/core": "^15.1.5",
"@angular/forms": "^15.1.5",
"@angular/localize": "^15.1.5",
"@angular/platform-browser": "^15.1.5",
"@angular/platform-browser-dynamic": "^15.1.5",
"@angular/router": "^15.1.5",
"@bugsplat/ngx-animated-counter": "^2.0.0",
"@fortawesome/angular-fontawesome": "^0.12.1",
"@fortawesome/fontawesome-svg-core": "^6.3.0",
"@fortawesome/free-brands-svg-icons": "^6.2.1",
"@fortawesome/free-solid-svg-icons": "^6.3.0",
"@ng-bootstrap/ng-bootstrap": "^14.0.1",
"@popperjs/core": "^2.11.5",
"bootstrap": "^5.1.3",
"rxjs": "~7.5.0",
"tslib": "^2.3.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^15.1.6",
"@angular-eslint/builder": "15.2.1",
"@angular-eslint/eslint-plugin": "15.2.1",
"@angular-eslint/eslint-plugin-template": "15.2.1",
"@angular-eslint/schematics": "15.2.1",
"@angular-eslint/template-parser": "15.2.1",
"@angular/cli": "^15.1.6",
"@angular/compiler-cli": "^15.1.5",
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@types/jasmine": "^3.10.3",
"@types/node": "^16.11.24",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"copyfiles": "^2.4.1",
"eslint": "^8.28.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsdoc": "^37.7.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"husky": "^7.0.0",
"jasmine": "^4.0.2",
"jasmine-core": "~4.0.0",
"karma": "~6.3.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.1.0",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "~1.7.0",
"ng-packagr": "^15.1.2",
"semantic-release": "^19.0.2",
"semantic-release-cli": "^5.4.4",
"typescript": "~4.9.5"
},
"repository": {
"type": "git",
"url": "https://github.com/bobbyg603/ngx-toggle.git"
}
}