-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
118 lines (118 loc) · 3.96 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
{
"name": "ng-date-interval",
"version": "2.2.0",
"author": "Liam Baker (@lamabiker)",
"license": "MIT",
"description": "Displaying date interval sentences with Angular, i.e From March to April 2020, Since June 16, 2021",
"scripts": {
"adjust-version:lib": "rjp projects/ng-date-interval/package.json version $VERSION",
"adjust-version:main": "rjp package.json version $VERSION",
"adjust-version": "npm run adjust-version:main && npm run adjust-version:lib",
"build:demo": "ng build ng-date-interval-showcase --base-href='https://lamabiker.github.io/ng-date-interval/'",
"build:lib": "npm run copy:readme && ng build ng-date-interval --configuration production",
"build-lib": "ng build ng-date-interval --configuration production",
"build": "npm run build:lib && npm run build:demo",
"copy:readme": "copyfiles ./README.md ./dist/ng-date-interval",
"e2e": "ng e2e",
"format:check": "prettier --list-different 'projects/**/*.ts'",
"format:write": "prettier --write 'projects/**/*.ts'",
"lint": "ng lint",
"ng": "ng",
"publish:demo": "npx angular-cli-ghpages --dir=./dist/ng-date-interval",
"publish:lib": "npx semantic-release",
"report-coverage:lib": "cat ./coverage/ng-date-interval/lcov.info | codecov",
"semantic-release": "semantic-release",
"start": "ng serve",
"test:lib-coverage": "ng test ng-date-interval --code-coverage --watch=false",
"test": "ng test"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"projects/**/*.ts": [
"prettier --write",
"git add"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"dependencies": {
"@angular/animations": "^14.2.7",
"@angular/cdk": "^14.2.5",
"@angular/common": "^14.2.7",
"@angular/compiler": "^14.2.7",
"@angular/core": "^14.2.7",
"@angular/forms": "^14.2.7",
"@angular/material": "^14.2.5",
"@angular/platform-browser": "^14.2.7",
"@angular/platform-browser-dynamic": "^14.2.7",
"@angular/router": "^14.2.7",
"ngx-highlightjs": "^7.0.1",
"rxjs": "^7.5.7",
"tslib": "^2.0.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^14.2.6",
"@angular-eslint/builder": "14.1.2",
"@angular-eslint/eslint-plugin": "14.1.2",
"@angular-eslint/eslint-plugin-template": "14.1.2",
"@angular-eslint/schematics": "14.1.2",
"@angular-eslint/template-parser": "14.1.2",
"@angular/cli": "^14.2.6",
"@angular/compiler-cli": "^14.2.7",
"@angular/language-service": "^14.2.7",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/exec": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "^2.0.10",
"@types/node": "^12.20.21",
"@typescript-eslint/eslint-plugin": "5.37.0",
"@typescript-eslint/parser": "5.37.0",
"codecov": "^3.8.3",
"copyfiles": "^2.4.1",
"eslint": "^8.23.1",
"husky": "^4.3.8",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~6.3.4",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"lint-staged": "^10.5.4",
"ng-packagr": "^14.2.1",
"prettier": "^1.19.1",
"protractor": "~7.0.0",
"replace-json-property": "^1.6.3",
"semantic-release": "^19.0.3",
"ts-node": "~8.3.0",
"typescript": "^4.6.4"
},
"repository": {
"type": "git",
"url": "https://github.com/lamabiker/ng-date-interval.git"
},
"bugs": {
"url": "https://github.com/lamabiker/ng-date-interval/issues"
},
"homepage": "https://lamabiker.github.io/ng-date-interval/",
"keywords": [
"angular",
"javascript",
"library",
"date interval",
"i18n",
"pipe"
]
}