-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
78 lines (78 loc) · 2.42 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-multi-window-demo",
"version": "0.0.0",
"scripts": {
"build:app": "ng build --configuration production --aot --baseHref=/ngx-multi-window/",
"build:lib": "ng build ngx-multi-window --configuration production && npm run copy:readme",
"copy:readme": "cpx README.md dist/ngx-multi-window",
"commit": "git-cz",
"deploy:app": "./deploy.sh dist/$npm_package_name/",
"e2e": "ng e2e",
"lint": "ng lint",
"ng": "ng",
"release:lib": "npm run lint && npm run build:lib && cd dist/ngx-multi-window && npm publish",
"start": "ng serve",
"test": "ng test ngx-multi-window",
"test:ci": "ng test ngx-multi-window --watch=false"
},
"private": true,
"dependencies": {
"@angular/animations": "^16.1.5",
"@angular/common": "^16.1.5",
"@angular/compiler": "^16.1.5",
"@angular/core": "^16.1.5",
"@angular/forms": "^16.1.5",
"@angular/platform-browser": "^16.1.5",
"@angular/platform-browser-dynamic": "^16.1.5",
"@angular/router": "^16.1.5",
"rxjs": "~7.8.1",
"tslib": "^2.6.0",
"zone.js": "~0.13.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^16.1.4",
"@angular-eslint/builder": "16.1.0",
"@angular-eslint/eslint-plugin": "16.1.0",
"@angular-eslint/eslint-plugin-template": "16.1.0",
"@angular-eslint/schematics": "16.1.0",
"@angular-eslint/template-parser": "16.1.0",
"@angular/cli": "^16.1.4",
"@angular/compiler-cli": "^16.1.5",
"@angular/language-service": "^16.1.5",
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@types/jasmine": "~4.3.5",
"@types/jasminewd2": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"commitizen": "^4.3.0",
"cpx": "^1.5.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.39.0",
"jasmine-core": "~5.0.1",
"jasmine-spec-reporter": "~7.0.0",
"karma": "~6.4.2",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.1",
"karma-jasmine": "~5.1.0",
"ng-packagr": "^16.1.0",
"protractor": "~7.0.0",
"ts-node": "^10.9.1",
"typescript": "~5.1.6"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}