-
-
Notifications
You must be signed in to change notification settings - Fork 59
/
package.json
122 lines (122 loc) · 4.12 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "angular-confirmation-popover",
"version": "7.0.0",
"description": "An angular 15.0+ bootstrap confirmation popover",
"scripts": {
"start": "concurrently --raw \"ng serve --open\" \"pnpm test:watch\"",
"build:demo": "ng build --configuration production",
"build:lib": "copyfiles package.json projects/angular-confirmation-popover && ng build angular-confirmation-popover --configuration production && pnpm copyfiles",
"build:clean": "del dist",
"copyfiles": "copyfiles CHANGELOG.md README.md LICENSE dist/angular-confirmation-popover",
"test": "pnpm lint && ng test angular-confirmation-popover --watch=false --code-coverage && pnpm build:lib && pnpm build:clean",
"test:watch": "ng test angular-confirmation-popover",
"lint": "ng lint",
"commit": "git-cz",
"compodoc": "compodoc -p tsconfig-compodoc.json -d dist/demo/docs --disableGraph --disableCoverage --disablePrivate --disableInternal --disableLifeCycleHooks --disableProtected",
"prerelease": "npm test",
"release:git": "standard-version && git push --follow-tags origin main",
"release:npm": "pnpm build:lib && pnpm publish dist/angular-confirmation-popover",
"release": "pnpm release:git && pnpm release:npm",
"postrelease": "pnpm gh-pages",
"gh-pages": "pnpm build:clean && pnpm build:demo && pnpm compodoc && ng deploy && pnpm build:clean"
},
"husky": {
"hooks": {
"commit-msg": "validate-commit-msg",
"pre-commit": "pretty-quick --staged"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/mattlewis92/angular-confirmation-popover.git"
},
"keywords": [
"angular",
"angular2",
"bootstrap",
"popover",
"confirm",
"confirmation"
],
"author": "Matt Lewis",
"license": "MIT",
"bugs": {
"url": "https://github.com/mattlewis92/angular-confirmation-popover/issues"
},
"homepage": "https://github.com/mattlewis92/angular-confirmation-popover#readme",
"dependencies": {
"positioning": "^2.0.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^15.2.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/animations": "^15.2.8",
"@angular/cli": "^15.2.6",
"@angular/common": "^15.2.8",
"@angular/compiler": "^15.2.8",
"@angular/compiler-cli": "^15.2.8",
"@angular/core": "^15.2.8",
"@angular/forms": "^15.2.8",
"@angular/language-service": "^15.2.8",
"@angular/platform-browser": "^15.2.8",
"@angular/platform-browser-dynamic": "^15.2.8",
"@angular/router": "^15.2.8",
"@compodoc/compodoc": "^1.1.19",
"@types/chai": "^4.3.4",
"@types/chai-dom": "0.0.10",
"@types/jasmine": "~4.3.1",
"@types/node": "^14.18.42",
"@types/sinon": "^9.0.11",
"@types/sinon-chai": "^3.2.9",
"@typescript-eslint/eslint-plugin": "5.48.2",
"@typescript-eslint/parser": "5.48.2",
"angular-cli-ghpages": "^1.0.5",
"chai": "^4.3.7",
"chai-dom": "^1.11.0",
"commitizen": "^4.3.0",
"concurrently": "^5.3.0",
"copyfiles": "^2.4.1",
"cz-conventional-changelog": "^3.3.0",
"del-cli": "^3.0.1",
"eslint": "^8.39.0",
"husky": "^4.3.8",
"jasmine-core": "~4.5.0",
"karma": "^6.4.2",
"karma-chrome-launcher": "~3.1.1",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.0.0",
"ng-packagr": "^15.2.2",
"prettier": "^2.8.8",
"pretty-quick": "^2.0.2",
"rxjs": "^6.6.7",
"sinon": "^15.0.4",
"sinon-chai": "^3.7.0",
"standard-version": "^8.0.2",
"ts-node": "^8.10.2",
"tslib": "^2.5.0",
"typescript": "~4.9.5",
"validate-commit-msg": "^2.14.0",
"zone.js": "~0.11.8"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"peerDependencies": {
"@angular/core": ">=15.0.0"
},
"packageManager": "pnpm@7.32.2",
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@angular-devkit/*"
]
}
}
}