-
-
Notifications
You must be signed in to change notification settings - Fork 62
/
package.json
105 lines (105 loc) · 3.67 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
{
"name": "angularx-flatpickr",
"version": "8.0.0",
"description": "An angular 17.0+ wrapper for flatpickr",
"scripts": {
"start": "concurrently --raw \"ng serve --open\" \"pnpm test:watch\"",
"build:demo": "ng build --configuration production",
"build:lib": "copyfiles package.json projects/angularx-flatpickr && ng build angularx-flatpickr --configuration production && pnpm copyfiles",
"build:clean": "rm -rf dist",
"copyfiles": "copyfiles CHANGELOG.md README.md LICENSE dist/angularx-flatpickr",
"test": "pnpm lint && ng test angularx-flatpickr --watch=false --code-coverage && pnpm build:lib && pnpm build:clean",
"test:watch": "ng test angularx-flatpickr",
"lint": "ng lint",
"commit": "git-cz",
"compodoc": "compodoc -p tsconfig-compodoc.json -d dist/demo/docs --disableGraph --disableCoverage --disablePrivate --disableInternal --disableLifeCycleHooks --disableProtected",
"prerelease": "pnpm test",
"release:git": "standard-version && git push --follow-tags origin main",
"release:npm": "pnpm build:lib && pnpm publish dist/angularx-flatpickr",
"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",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mattlewis92/angularx-flatpickr.git"
},
"keywords": [
"angular",
"flatpickr",
"datepicker"
],
"author": "Matt Lewis",
"license": "MIT",
"bugs": {
"url": "https://github.com/mattlewis92/angularx-flatpickr/issues"
},
"homepage": "https://github.com/mattlewis92/angularx-flatpickr#readme",
"devDependencies": {
"@angular-devkit/build-angular": "^17.3.8",
"@angular-eslint/builder": "17.5.2",
"@angular-eslint/eslint-plugin": "17.5.2",
"@angular-eslint/eslint-plugin-template": "17.5.2",
"@angular-eslint/schematics": "17.5.2",
"@angular-eslint/template-parser": "17.5.2",
"@angular/animations": "^17.3.12",
"@angular/cli": "~17.3.8",
"@angular/common": "^17.3.12",
"@angular/compiler": "^17.3.12",
"@angular/compiler-cli": "^17.3.12",
"@angular/core": "^17.3.12",
"@angular/forms": "^17.3.12",
"@angular/platform-browser": "^17.3.12",
"@angular/platform-browser-dynamic": "^17.3.12",
"@angular/router": "^17.3.12",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@commitlint/prompt": "^17.0.3",
"@compodoc/compodoc": "^1.1.19",
"@types/chai": "^4.3.3",
"@types/mocha": "^9.1.1",
"@types/sinon": "^10.0.13",
"@types/sinon-chai": "^3.2.8",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"angular-cli-ghpages": "^1.0.3",
"chai": "^4.3.6",
"commitizen": "^4.2.5",
"concurrently": "^7.3.0",
"copyfiles": "^2.4.1",
"eslint": "^8.57.0",
"flatpickr": "^4.6.13",
"husky": "^8.0.1",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.2.0",
"karma-mocha": "^2.0.1",
"mocha": "^10.0.0",
"ng-packagr": "^17.3.0",
"prettier": "^3.3.3",
"pretty-quick": "^4.0.0",
"rxjs": "~7.5.0",
"sinon": "^14.0.0",
"sinon-chai": "^3.7.0",
"standard-version": "^9.5.0",
"ts-node": "^10.9.1",
"tslib": "^2.3.0",
"typescript": "~5.2.2",
"zone.js": "~0.14.8"
},
"dependencies": {
"tslib": "^2.3.0"
},
"peerDependencies": {
"@angular/core": ">=17.0.0",
"@angular/forms": ">=17.0.0",
"flatpickr": "^4.5.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"packageManager": "[email protected]"
}